diff options
author | drh <> | 2025-04-01 16:26:51 +0000 |
---|---|---|
committer | drh <> | 2025-04-01 16:26:51 +0000 |
commit | 76076d442ad2ca0378933de08ce4e5bb6a4da39c (patch) | |
tree | ab85dc325e0ddbd306d30a44bdaa265dab05368c /src | |
parent | 3a7042e0e2257e50e3003ebac097665c118549e6 (diff) | |
download | sqlite-76076d442ad2ca0378933de08ce4e5bb6a4da39c.tar.gz sqlite-76076d442ad2ca0378933de08ce4e5bb6a4da39c.zip |
Fix a typo accidently added to the prior check-in.
FossilOrigin-Name: fb2f283038f9329b6f791d92d6f943269f24f1a0efd5859165b63f517ed52ddb
Diffstat (limited to 'src')
-rw-r--r-- | src/json.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/json.c b/src/json.c index 18d871778..0ab46c5ae 100644 --- a/src/json.c +++ b/src/json.c @@ -2532,7 +2532,7 @@ static int jsonBlobOverwrite( ** 2 3 4 5 6 7 8 9 */ static const u8 aType[] = { 0xc0, 0xd0, 0, 0xe0, 0, 0, 0, 0xf0 }; - if( (aIns[0]&0x0f)<=2 ) return ; /* Cannot enlarge NULL, true, false */ + if( (aIns[0]&0x0f)<=2 ) return 0; /* Cannot enlarge NULL, true, false */ switch( aIns[0]>>4 ){ default: { /* aIns[] header size 1 */ if( ((1<<d)&0x116)==0 ) return 0; /* d must be 1, 2, 4, or 8 */ |