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:
@@ -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);
|
||||
}
|
||||
|
Reference in New Issue
Block a user