diff options
author | drh <> | 2022-05-10 23:28:12 +0000 |
---|---|---|
committer | drh <> | 2022-05-10 23:28:12 +0000 |
commit | cc212e4450e5a3f38b88508f1e3d90045deb8fd1 (patch) | |
tree | 402d1c8fb81f0db57e996e888845b23fc6bb6ba7 /src | |
parent | 825ecf9c055c6b3ba9ef1c319cbcf933dca12c7a (diff) | |
download | sqlite-cc212e4450e5a3f38b88508f1e3d90045deb8fd1.tar.gz sqlite-cc212e4450e5a3f38b88508f1e3d90045deb8fd1.zip |
Fix a bug in the sqlite3WhereMalloc() routines that were added by
chekc-in [f237e1d8cc41b937]. The bug was detected by dbsqlfuzz
test case 4c5e3e89bc251d28378be88233f531b84ec66901.
FossilOrigin-Name: 764b71267e0b31ff7eaf2a0def7526a1a02dce4d5b456dea060d97ed342efdd1
Diffstat (limited to 'src')
-rw-r--r-- | src/whereInt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/whereInt.h b/src/whereInt.h index 93ab937c8..41417d2e7 100644 --- a/src/whereInt.h +++ b/src/whereInt.h @@ -41,7 +41,7 @@ typedef struct WhereRightJoin WhereRightJoin; */ struct WhereMemBlock { WhereMemBlock *pNext; /* Next block in the chain */ - u8 sz; /* Bytes of space */ + u64 sz; /* Bytes of space */ }; /* |