1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-05 15:55:57 +03:00

Fix a harmless code typo introduced by [b57e3c3db00a6bc6] and reported by

[forum:/forumpost/09957d8b2a|forum post 09957d8b2a].

FossilOrigin-Name: f3a6cdb89b13bc173cfce9526f836600469b0242fe62b8f92f8747896d7d47bb
This commit is contained in:
drh
2025-04-06 10:22:26 +00:00
parent 8aaf23a15e
commit 29c7c8b913
3 changed files with 9 additions and 9 deletions

View File

@@ -1808,7 +1808,7 @@ int sqlite3_bind_text64(
assert( xDel!=SQLITE_DYNAMIC );
if( enc!=SQLITE_UTF8 ){
if( enc==SQLITE_UTF16 ) enc = SQLITE_UTF16NATIVE;
nData &= ~(u16)1;
nData &= ~(u64)1;
}
return bindText(pStmt, i, zData, nData, xDel, enc);
}