rrichards               Mon Oct 17 15:47:35 2005 EDT

  Modified files:              
    /php-src/ext/libxml libxml.c 
  Log:
  only need context set once
  
http://cvs.php.net/diff.php/php-src/ext/libxml/libxml.c?r1=1.37&r2=1.38&ty=u
Index: php-src/ext/libxml/libxml.c
diff -u php-src/ext/libxml/libxml.c:1.37 php-src/ext/libxml/libxml.c:1.38
--- php-src/ext/libxml/libxml.c:1.37    Thu Oct 13 16:17:18 2005
+++ php-src/ext/libxml/libxml.c Mon Oct 17 15:47:23 2005
@@ -17,7 +17,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: libxml.c,v 1.37 2005/10/13 20:17:18 rrichards Exp $ */
+/* $Id: libxml.c,v 1.38 2005/10/17 19:47:23 rrichards Exp $ */
 
 #define IS_EXT_MODULE
 
@@ -386,7 +386,7 @@
 
     /* try with a non-escaped URI this may be a strange filename */
        if (context == NULL) {
-               context = context = 
php_libxml_streams_IO_open_write_wrapper(URI);
+               context = php_libxml_streams_IO_open_write_wrapper(URI);
        }
 
        if (context == NULL) {

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to