Unverified Commit 817e88a6 authored by P.I.E. Security Team's avatar P.I.E. Security Team Committed by GitHub
Browse files

Merge pull request #41 from TimWolla/backslash

Add missing backslash in front of `pack()` call
No related merge requests found
Showing with 2 additions and 2 deletions
+2 -2
......@@ -49,7 +49,7 @@ abstract class Hex implements EncoderInterface
$c = $chunk[1] & 0xf;
$b = $chunk[1] >> 4;
$hex .= pack(
$hex .= \pack(
'CC',
(87 + $b + ((($b - 10) >> 8) & ~38)),
(87 + $c + ((($c - 10) >> 8) & ~38))
......@@ -77,7 +77,7 @@ abstract class Hex implements EncoderInterface
$c = $chunk[1] & 0xf;
$b = $chunk[1] >> 4;
$hex .= pack(
$hex .= \pack(
'CC',
(55 + $b + ((($b - 10) >> 8) & ~6)),
(55 + $c + ((($c - 10) >> 8) & ~6))
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment