fix of fix

This commit is contained in:
vms 2021-09-03 13:50:33 +03:00
parent 71080d772d
commit 807d6ff47d

View File

@ -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(