mirror of
https://github.com/fluencelabs/sqlite
synced 2025-04-24 17:02:14 +00:00
fix of fix
This commit is contained in:
parent
71080d772d
commit
807d6ff47d
@ -1449,10 +1449,10 @@ int sqlite3_bind_blob(
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef __sqlite_unmodified_upstream
|
#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.
|
// 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);
|
return bindText(pStmt, i, zData, nData, free, 0);
|
||||||
#else
|
|
||||||
return bindText(pStmt, i, zData, nData, xDel, 0);
|
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
int sqlite3_bind_blob64(
|
int sqlite3_bind_blob64(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user