From db312cf18e4960278c2a0fb771d1a4dbf0a4ea76 Mon Sep 17 00:00:00 2001 From: Dmitry Stogov Date: Mon, 12 Dec 2005 09:25:23 +0000 Subject: [PATCH] Fixed bug #35570 (segfault when re-using soap client object) --- NEWS | 1 + ext/soap/php_http.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 0692b09549..e2f8d74f29 100644 --- a/NEWS +++ b/NEWS @@ -31,6 +31,7 @@ PHP NEWS - Fixed bug #35612 (iis6 Access Violation crash). (Dmitry, alacn.uhahaa) - Fixed bug #35594 (Multiple calls to getopt() may result in a crash). (rabbitt at gmail dot com, Ilia) +- Fixed bug #35570 (segfault when re-using soap client object). (Dmitry) - Fixed bug #35558 (mktime() interpreting 3 digit years incorrectly). (Ilia) - Fixed bug #35543 (php crash when calling non existing method of a class that extends PDO). (Tony) diff --git a/ext/soap/php_http.c b/ext/soap/php_http.c index ad83d22de2..157a6bff2b 100644 --- a/ext/soap/php_http.c +++ b/ext/soap/php_http.c @@ -32,7 +32,7 @@ static int get_http_headers(php_stream *socketd,char **response, int *out_size T static int stream_alive(php_stream *stream TSRMLS_DC) { - int socket; + long socket; char buf; /* maybe better to use: -- 2.50.1