pajoye          Thu Nov 20 10:22:55 2008 UTC

  Modified files:              (Branch: PHP_5_3)
    /php-src/ext/sqlite3        sqlite3.c 
  Log:
  - MFH: declarations must be.. 1st
  
http://cvs.php.net/viewvc.cgi/php-src/ext/sqlite3/sqlite3.c?r1=1.1.2.18&r2=1.1.2.19&diff_format=u
Index: php-src/ext/sqlite3/sqlite3.c
diff -u php-src/ext/sqlite3/sqlite3.c:1.1.2.18 
php-src/ext/sqlite3/sqlite3.c:1.1.2.19
--- php-src/ext/sqlite3/sqlite3.c:1.1.2.18      Wed Nov 19 02:00:53 2008
+++ php-src/ext/sqlite3/sqlite3.c       Thu Nov 20 10:22:55 2008
@@ -16,7 +16,7 @@
    +----------------------------------------------------------------------+
 */
 
-/* $Id: sqlite3.c,v 1.1.2.18 2008/11/19 02:00:53 colder Exp $ */
+/* $Id: sqlite3.c,v 1.1.2.19 2008/11/20 10:22:55 pajoye Exp $ */
 
 #ifdef HAVE_CONFIG_H
 #include "config.h"
@@ -1380,9 +1380,11 @@
 {
        php_sqlite3_result *result_obj;
        zval *object = getThis();
-       result_obj = (php_sqlite3_result *)zend_object_store_get_object(object 
TSRMLS_CC);
        zend_error_handling error_handling;
 
+       result_obj = (php_sqlite3_result *)zend_object_store_get_object(object 
TSRMLS_CC);
+
+
        zend_replace_error_handling(EH_THROW, NULL, &error_handling TSRMLS_CC);
 
        php_error_docref(NULL TSRMLS_CC, E_WARNING, "SQLite3Result cannot be 
directly instantiated");



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

Reply via email to