helly           Sat Oct 29 11:48:15 2005 EDT

  Modified files:              
    /php-src/ext/spl    spl_directory.c 
  Log:
  - Increase buffer for 64 bit systems
  
http://cvs.php.net/diff.php/php-src/ext/spl/spl_directory.c?r1=1.53&r2=1.54&ty=u
Index: php-src/ext/spl/spl_directory.c
diff -u php-src/ext/spl/spl_directory.c:1.53 
php-src/ext/spl/spl_directory.c:1.54
--- php-src/ext/spl/spl_directory.c:1.53        Sat Oct 29 11:10:55 2005
+++ php-src/ext/spl/spl_directory.c     Sat Oct 29 11:48:14 2005
@@ -16,7 +16,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: spl_directory.c,v 1.53 2005/10/29 15:10:55 helly Exp $ */
+/* $Id: spl_directory.c,v 1.54 2005/10/29 15:48:14 helly Exp $ */
 
 #ifdef HAVE_CONFIG_H
 # include "config.h"
@@ -1306,7 +1306,7 @@
 SPL_METHOD(SplTempFileObject, __construct)
 {
        long max_memory = PHP_STREAM_MAX_MEM;
-       char tmp_fname[32];
+       char tmp_fname[48];
        spl_filesystem_object *intern = 
(spl_filesystem_object*)zend_object_store_get_object(getThis() TSRMLS_CC);
 
        php_set_error_handling(EH_THROW, U_CLASS_ENTRY(spl_ce_RuntimeException) 
TSRMLS_CC);

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

Reply via email to