Skip to content

Commit

Permalink
Fixed bug #33394 (Socket Timeout on SOAP request causes general excep…
Browse files Browse the repository at this point in the history
…tion in Apache process).
  • Loading branch information
dstogov committed Dec 7, 2005
1 parent 58ed71c commit 7a703e6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ext/soap/php_http.c
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,9 @@ static php_stream* http_connect(zval* this_ptr, php_url *phpurl, int use_ssl, in
php_stream_close(stream);
stream = NULL;
}
efree(http_headers);
if (http_headers) {
efree(http_headers);
}
}
#ifdef ZEND_ENGINE_2
/* enable SSL transport layer */
Expand Down

0 comments on commit 7a703e6

Please sign in to comment.