1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-12 13:01:09 +03:00

Remove an unnecessary conditional.

FossilOrigin-Name: 56d19f9fd7b01d4ed5c3e7309977b43fedffee168c9760d3e3b7e885790f781e
This commit is contained in:
drh
2017-08-21 02:20:57 +00:00
parent b32c18bf42
commit b40f06c62d
3 changed files with 8 additions and 8 deletions

View File

@@ -775,7 +775,7 @@ Expr *sqlite3Expr(
){
Token x;
x.z = zToken;
x.n = zToken ? sqlite3Strlen30(zToken) : 0;
x.n = sqlite3Strlen30(zToken);
return sqlite3ExprAlloc(db, op, &x, 0);
}