aboutsummaryrefslogtreecommitdiff
path: root/ext/misc/carray.c
diff options
context:
space:
mode:
Diffstat (limited to 'ext/misc/carray.c')
-rw-r--r--ext/misc/carray.c2
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);
}