georg           Wed Apr  6 02:47:13 2005 EDT

  Modified files:              
    /php-src/ext/mysqli mysqli.c 
  Log:
  fix for bug #32282 (segfault in mysqli_fetch_array on 64-bit)
  
  
http://cvs.php.net/diff.php/php-src/ext/mysqli/mysqli.c?r1=1.62&r2=1.63&ty=u
Index: php-src/ext/mysqli/mysqli.c
diff -u php-src/ext/mysqli/mysqli.c:1.62 php-src/ext/mysqli/mysqli.c:1.63
--- php-src/ext/mysqli/mysqli.c:1.62    Sun Mar  6 16:40:01 2005
+++ php-src/ext/mysqli/mysqli.c Wed Apr  6 02:47:12 2005
@@ -15,7 +15,7 @@
   | Author: Georg Richter <[EMAIL PROTECTED]>                                |
   +----------------------------------------------------------------------+
 
-  $Id: mysqli.c,v 1.62 2005/03/06 21:40:01 helly Exp $ 
+  $Id: mysqli.c,v 1.63 2005/04/06 06:47:12 georg Exp $ 
 */
 
 #ifdef HAVE_CONFIG_H
@@ -737,7 +737,7 @@
 {
        MYSQL_RES               *result;
        zval                    *mysql_result;
-       int                             fetchtype;
+       long                    fetchtype;
        unsigned int    i;
        MYSQL_FIELD             *fields;
        MYSQL_ROW               row;

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

Reply via email to