X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=KnownIssues.txt;h=d54a683521503571adc3836aa37e8516e268abf0;hp=e4ce6c8c3d903b821cf381d72dd2e49453e86a45;hb=4e2ecc5ed84649ce20fd1f11319626e0b1befa0a;hpb=3d32981b334c85d8f848488b77cb29eea6b7b544 diff --git a/KnownIssues.txt b/KnownIssues.txt index e4ce6c8..d54a683 100644 --- a/KnownIssues.txt +++ b/KnownIssues.txt @@ -20,9 +20,8 @@ to not check for zlib header bytes. This is not preventable AFAICS. generate any compressed data (gzip, deflate AKA zlib and raw deflate); just use the flag for the data format you want to generate: HTTP_DEFLATE_TYPE_GZIP, HTTP_DEFLATE_TYPE_ZLIB or HTTP_DEFLATE_TYPE_RAW. - Using a deflate stream filter on a stream you read from, will -not work as expected, because the filter does not know when to finish, -thus the trailing bytes (GZIP and ZLIB, not RAW) won't ever be generated. + Using an encoding stream filter on a stream you read from, will +not work as expected in a PHP version lower than 5.1.3. Internals: - there's a memleak with sizeof(zval) for each thrown exception, @@ -32,3 +31,6 @@ Internals: - our http_urlencode_hash() only handles arrays and does not differentiate between prefixes for numeric or string keys. + + - check all places where hash table entries are created if + the keys are properly NUL terminated (prior 1.0!)