From 807d6ff47db8272320a4822ae596a8bdc05eb349 Mon Sep 17 00:00:00 2001 From: vms Date: Fri, 3 Sep 2021 13:50:33 +0300 Subject: [PATCH] fix of fix --- src/vdbeapi.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/vdbeapi.c b/src/vdbeapi.c index 0ad2f90..ff6a0a3 100644 --- a/src/vdbeapi.c +++ b/src/vdbeapi.c @@ -1449,10 +1449,10 @@ int sqlite3_bind_blob( #endif #ifdef __sqlite_unmodified_upstream + return bindText(pStmt, i, zData, nData, xDel, 0); +#else // xDel is a custom deallocator, due to our IT architecture it can't be provided from other modules. return bindText(pStmt, i, zData, nData, free, 0); -#else - return bindText(pStmt, i, zData, nData, xDel, 0); #endif } int sqlite3_bind_blob64(