aboutsummaryrefslogtreecommitdiff
path: root/src/malloc.c
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2016-02-25 18:54:30 +0000
committerdrh <drh@noemail.net>2016-02-25 18:54:30 +0000
commitd3e1af4aa04113b379050119e0015ada3078cc4e (patch)
treed12ed8d1907415a474cf321b76498befd1312fc9 /src/malloc.c
parent7f219fad58bb84f5e856134a7b6909c8c0482c9b (diff)
parenteecb80e77e3556e9373237eff6ab0a8dad7eb5fb (diff)
downloadsqlite-d3e1af4aa04113b379050119e0015ada3078cc4e.tar.gz
sqlite-d3e1af4aa04113b379050119e0015ada3078cc4e.zip
Merge all the latest changes from trunk.
FossilOrigin-Name: b86590043e17705ada90562cf30f69b3e3ef65a4
Diffstat (limited to 'src/malloc.c')
-rw-r--r--src/malloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/malloc.c b/src/malloc.c
index ebe044035..462d78e68 100644
--- a/src/malloc.c
+++ b/src/malloc.c
@@ -795,7 +795,7 @@ void sqlite3OomClear(sqlite3 *db){
static SQLITE_NOINLINE int apiOomError(sqlite3 *db){
sqlite3OomClear(db);
sqlite3Error(db, SQLITE_NOMEM);
- return SQLITE_NOMEM;
+ return SQLITE_NOMEM_BKPT;
}
/*