diff options
author | dan <dan@noemail.net> | 2020-11-18 14:30:53 +0000 |
---|---|---|
committer | dan <dan@noemail.net> | 2020-11-18 14:30:53 +0000 |
commit | 8bb3961d40ebfa9f48c486840b6ba98b9cdb2a0f (patch) | |
tree | 278efd55f3f2b7edb535e215df3f9342eb36baf8 /ext/misc/carray.c | |
parent | 5011bb8dd2038cc42ef9cd885afe0b7a9722a1ed (diff) | |
download | sqlite-8bb3961d40ebfa9f48c486840b6ba98b9cdb2a0f.tar.gz sqlite-8bb3961d40ebfa9f48c486840b6ba98b9cdb2a0f.zip |
Fix a problem causing sqlite3_carray_bind() to return an undefined value.
FossilOrigin-Name: 083203a549d3cf26991d8626b308ff1e9e44be6abb72ab3d38e5fd53c99aed7f
Diffstat (limited to 'ext/misc/carray.c')
-rw-r--r-- | ext/misc/carray.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/misc/carray.c b/ext/misc/carray.c index 7c892b8a6..b8cda21bc 100644 --- a/ext/misc/carray.c +++ b/ext/misc/carray.c @@ -464,7 +464,7 @@ int sqlite3_carray_bind( pNew->aData = aData; pNew->xDel = xDestroy; } - sqlite3_bind_pointer(pStmt, idx, pNew, "carray-bind", carrayBindDel); + return sqlite3_bind_pointer(pStmt, idx, pNew, "carray-bind", carrayBindDel); } |