Browse Source

Merge pull request #1946 from chadf/fuzzing-3

Fixed crash when Base64ToByteStream() is only given '=' characters.
pull/1950/head
orignal 1 year ago committed by GitHub
parent
commit
8590dbd3d3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      libi2pd/Base.cpp

3
libi2pd/Base.cpp

@ -187,6 +187,9 @@ namespace data
else else
return 0; return 0;
if(*InBuffer == P64)
return 0;
ps = (unsigned char *)(InBuffer + InCount - 1); ps = (unsigned char *)(InBuffer + InCount - 1);
while ( *ps-- == P64 ) while ( *ps-- == P64 )
outCount--; outCount--;

Loading…
Cancel
Save