diff options
author | drh <> | 2023-06-19 23:27:22 +0000 |
---|---|---|
committer | drh <> | 2023-06-19 23:27:22 +0000 |
commit | f82c8cb0d55fe1f848d8b41532e8f888def293eb (patch) | |
tree | c441688ec1c741290623dc94b31cd746f5897d50 /src/sqliteInt.h | |
parent | 1e24dc987a6d5710258ca75488ae54339f7e3bb6 (diff) | |
download | sqlite-f82c8cb0d55fe1f848d8b41532e8f888def293eb.tar.gz sqlite-f82c8cb0d55fe1f848d8b41532e8f888def293eb.zip |
Avoid unnecessary NULL pointer checks on calls to sqlite3WalkExpr().
FossilOrigin-Name: 73d86a12fb068456a884c030fddd87020d6ec9d56376de541cf082b2104174d3
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 4009d4f8d..ad96faa89 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -4211,6 +4211,7 @@ struct DbFixer { /* Forward declarations */ int sqlite3WalkExpr(Walker*, Expr*); +int sqlite3WalkExprNN(Walker*, Expr*); int sqlite3WalkExprList(Walker*, ExprList*); int sqlite3WalkSelect(Walker*, Select*); int sqlite3WalkSelectExpr(Walker*, Select*); |