From: Wez Furlong Date: Sat, 25 Sep 2004 23:13:49 +0000 (+0000) Subject: Probable fix for Bug #30147 X-Git-Tag: PRE_NEW_VM_GEN_PATCH~212 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0c1a436917f3355694b06512802d75858da5b287;p=php Probable fix for Bug #30147 --- diff --git a/ext/sqlite/sqlite.c b/ext/sqlite/sqlite.c index 9fc3ec860e..e51100a6d6 100644 --- a/ext/sqlite/sqlite.c +++ b/ext/sqlite/sqlite.c @@ -1969,6 +1969,7 @@ PHP_FUNCTION(sqlite_fetch_object) if (res->curr_row < res->nrows) { php_sqlite_fetch_array(res, PHPSQLITE_ASSOC, decode_binary, 1, &dataset TSRMLS_CC); } else { + php_std_error_handling(); RETURN_FALSE; }