mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
Fix an unchecked return - change was back-migrated
from version 3.7.6.3 of sqlite.c from upstream.
This commit is contained in:
parent
956e163784
commit
b61ea14729
1 changed files with 1 additions and 1 deletions
|
@ -17818,7 +17818,7 @@ SQLITE_API sqlite3_int64 sqlite3_soft_heap_limit64(sqlite3_int64 n){
|
|||
sqlite3_int64 priorLimit;
|
||||
sqlite3_int64 excess;
|
||||
#ifndef SQLITE_OMIT_AUTOINIT
|
||||
sqlite3_initialize();
|
||||
if( sqlite3_initialize() ) return 0;
|
||||
#endif
|
||||
sqlite3_mutex_enter(mem0.mutex);
|
||||
priorLimit = mem0.alarmThreshold;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue