diff options
author | stephan <stephan@noemail.net> | 2023-10-15 12:11:10 +0000 |
---|---|---|
committer | stephan <stephan@noemail.net> | 2023-10-15 12:11:10 +0000 |
commit | 6089e5bfcbf247400ca45faf05b32f2438d7fe80 (patch) | |
tree | 70761787fda856cfaef062ec2471fc7f5d3ceadb /src/vdbeblob.c | |
parent | d718bde6da3f15f8f9862e47e21cf883a9afedde (diff) | |
parent | 8a273bb6e8dc12571e587256d07168d11b64f3c7 (diff) | |
download | sqlite-6089e5bfcbf247400ca45faf05b32f2438d7fe80.tar.gz sqlite-6089e5bfcbf247400ca45faf05b32f2438d7fe80.zip |
Add coverage of more functions to SQLITE_ENABLE_API_ARMOR builds.
FossilOrigin-Name: 6cb77503484e104a51f08690974d6e19c336ab5467d327f84be1d042615f008c
Diffstat (limited to 'src/vdbeblob.c')
-rw-r--r-- | src/vdbeblob.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vdbeblob.c b/src/vdbeblob.c index ea6f016e3..522447dbc 100644 --- a/src/vdbeblob.c +++ b/src/vdbeblob.c @@ -142,7 +142,7 @@ int sqlite3_blob_open( #endif *ppBlob = 0; #ifdef SQLITE_ENABLE_API_ARMOR - if( !sqlite3SafetyCheckOk(db) || zTable==0 ){ + if( !sqlite3SafetyCheckOk(db) || zTable==0 || zColumn==0 ){ return SQLITE_MISUSE_BKPT; } #endif |