1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-29 08:01:23 +03:00

Fix a problem causing sqlite3_carray_bind() to return an undefined value.

FossilOrigin-Name: 083203a549d3cf26991d8626b308ff1e9e44be6abb72ab3d38e5fd53c99aed7f
This commit is contained in:
dan
2020-11-18 14:30:53 +00:00
parent 5011bb8dd2
commit 8bb3961d40
3 changed files with 8 additions and 8 deletions

View File

@ -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);
}