- fix behaviour of http_build_url() when second parameter is NULL
[m6w6/ext-http] / KnownIssues.txt
index e4ce6c8c3d903b821cf381d72dd2e49453e86a45..d54a683521503571adc3836aa37e8516e268abf0 100644 (file)
@@ -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!)