diff options
author | drh <> | 2022-01-24 12:48:54 +0000 |
---|---|---|
committer | drh <> | 2022-01-24 12:48:54 +0000 |
commit | 3cdb1394b936cbf139d441628de7533efa895cc3 (patch) | |
tree | 12f106e4791fbf055f279d9367dd1f189f2c2132 /src/sqliteInt.h | |
parent | f5bc44407701b4143519ecb32a547ca2f3b169ff (diff) | |
download | sqlite-3cdb1394b936cbf139d441628de7533efa895cc3.tar.gz sqlite-3cdb1394b936cbf139d441628de7533efa895cc3.zip |
Make sure the sqlite3OomFault() routine sets an error in the Parse object
if there is a Parse object active and linked to the database connection.
FossilOrigin-Name: ad7aace761c6b21ba453eaf43c68d985be7cbd5a200fe0d2e27a0c7150f99874
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index a2724f582..7fd0d81d0 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -4975,7 +4975,7 @@ int sqlite3CreateFunc(sqlite3 *, const char *, int, int, void *, FuncDestructor *pDestructor ); void sqlite3NoopDestructor(void*); -void sqlite3OomFault(sqlite3*); +void *sqlite3OomFault(sqlite3*); void sqlite3OomClear(sqlite3*); int sqlite3ApiExit(sqlite3 *db, int); int sqlite3OpenTempDatabase(Parse *); |