mirror of
https://github.com/sqlite/sqlite.git
synced 2025-11-14 00:22:38 +03:00
Space and size optimization to the printf implementation.
FossilOrigin-Name: d01d2cffefd1cdb52b386e4983599534c0fbbe6aebda186db53200e4b2283f0a
This commit is contained in:
@@ -656,7 +656,7 @@ void sqlite3VXPrintf(
|
||||
if( precision>=0 ){
|
||||
for(length=0; length<precision && bufpt[length]; length++){}
|
||||
}else{
|
||||
length = sqlite3Strlen30(bufpt);
|
||||
length = 0x7fffffff & (int)strlen(bufpt);
|
||||
}
|
||||
break;
|
||||
case etSQLESCAPE: /* Escape ' characters */
|
||||
|
||||
Reference in New Issue
Block a user