which to group by data is specified. (Ilia)
- Upgraded PCRE to version 7.5 (Nuno)
+- Fixed bug #43954 (Memory leak when sending the same HTTP status code
+ multiple times). (Scott)
- Fixed faulty fix for bug #40189 (endless loop in zlib.inflate stream filter).
(Greg)
- Fixed bug #43912 (Interbase column names are truncated to 31 characters).
&& !strncasecmp(header_line, "HTTP/", 5)) {
/* filter out the response code */
sapi_update_response_code(sapi_extract_response_code(header_line) TSRMLS_CC);
+ /* sapi_update_response_code doesn't free the status line if the code didn't change */
+ if (SG(sapi_headers).http_status_line) {
+ efree(SG(sapi_headers).http_status_line);
+ }
SG(sapi_headers).http_status_line = header_line;
return SUCCESS;
} else {