pollita Thu Apr 22 23:37:20 2004 EDT
Modified files:
/php-src/ext/standard http_fopen_wrapper.c
Log:
In-HEAD bugfix# 28115
http://cvs.php.net/diff.php/php-src/ext/standard/http_fopen_wrapper.c?r1=1.86&r2=1.87&ty=u
Index: php-src/ext/standard/http_fopen_wrapper.c
diff -u php-src/ext/standard/http_fopen_wrapper.c:1.86
php-src/ext/standard/http_fopen_wrapper.c:1.87
--- php-src/ext/standard/http_fopen_wrapper.c:1.86 Fri Mar 19 10:41:26 2004
+++ php-src/ext/standard/http_fopen_wrapper.c Thu Apr 22 23:37:20 2004
@@ -18,7 +18,7 @@
| Wez Furlong <[EMAIL PROTECTED]> |
+----------------------------------------------------------------------+
*/
-/* $Id: http_fopen_wrapper.c,v 1.86 2004/03/19 15:41:26 iliaa Exp $ */
+/* $Id: http_fopen_wrapper.c,v 1.87 2004/04/23 03:37:20 pollita Exp $ */
#include "php.h"
#include "php_globals.h"
@@ -194,6 +194,7 @@
/* Should we send the entire path in the request line, default to no. */
if (context &&
php_stream_context_get_option(context, "http", "request_fulluri",
&tmpzval) == SUCCESS) {
+ (*tmpzval)->refcount++;
SEPARATE_ZVAL(tmpzval);
convert_to_boolean_ex(tmpzval);
request_fulluri = Z_BVAL_PP(tmpzval) ? 1 : 0;
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php