Skip to content

Commit cda6bf6

Browse files
Fix overflow in Base32 decode
1 parent 8854357 commit cda6bf6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils.pas

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -586,7 +586,7 @@ function Base32Decode(const s: ansistring): ansistring;
586586
optr, len, bcnt: integer;
587587
Output: PByteArray;
588588
Input: PAnsiChar;
589-
w: word;
589+
w: qword;
590590
c: ansichar;
591591
b: byte;
592592
begin

0 commit comments

Comments
 (0)