derick Tue Aug 28 12:12:02 2007 UTC
Modified files:
/php-src/main main.c
Log:
- Fixed allow_url_fopen_list/allow_url_include_list handling by making sure
the pointers are initialized. Thanks to Sara.
http://cvs.php.net/viewvc.cgi/php-src/main/main.c?r1=1.744&r2=1.745&diff_format=u
Index: php-src/main/main.c
diff -u php-src/main/main.c:1.744 php-src/main/main.c:1.745
--- php-src/main/main.c:1.744 Fri Aug 3 01:40:05 2007
+++ php-src/main/main.c Tue Aug 28 12:12:02 2007
@@ -18,7 +18,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: main.c,v 1.744 2007/08/03 01:40:05 stas Exp $ */
+/* $Id: main.c,v 1.745 2007/08/28 12:12:02 derick Exp $ */
/* {{{ includes
*/
@@ -1814,6 +1814,8 @@
PG(error_handling) = EH_NORMAL;
PG(disable_functions) = NULL;
PG(disable_classes) = NULL;
+ PG(allow_url_fopen_list) = NULL;
+ PG(allow_url_include_list) = NULL;
#if HAVE_SETLOCALE
setlocale(LC_CTYPE, "");
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php