diff options
author | drh <> | 2021-06-12 17:45:32 +0000 |
---|---|---|
committer | drh <> | 2021-06-12 17:45:32 +0000 |
commit | 24ce9446a848459b70b2d18594b905df9672bb57 (patch) | |
tree | 73265b3d214c68005f7225d3572fd8af2aec1532 /src/sqliteInt.h | |
parent | 35e6cd09f2387cb75d4b971413d2efa3f8d91b13 (diff) | |
download | sqlite-24ce9446a848459b70b2d18594b905df9672bb57.tar.gz sqlite-24ce9446a848459b70b2d18594b905df9672bb57.zip |
This is an alternative approach to the use-after-free problem fixed
by [193b14a58e378ab3], saved here for historical reference.
FossilOrigin-Name: 6796b7a2485eca279db9d777595a886bc0d1dd7ec9551e1797e0032ef5493559
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 ad857ab03..4e99be384 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -4987,7 +4987,7 @@ const char *sqlite3JournalModename(int); void sqlite3CteDelete(sqlite3*,Cte*); With *sqlite3WithAdd(Parse*,With*,Cte*); void sqlite3WithDelete(sqlite3*,With*); - void sqlite3WithPush(Parse*, With*, u8); + With *sqlite3WithPush(Parse*, With*, u8); #else # define sqlite3CteNew(P,T,E,S) ((void*)0) # define sqlite3CteDelete(D,C) |