diff options
author | dan <Dan Kennedy> | 2023-09-25 17:21:53 +0000 |
---|---|---|
committer | dan <Dan Kennedy> | 2023-09-25 17:21:53 +0000 |
commit | 1b96f9167f4beb4e67bb5fd0ee7f6cce9aa72e9d (patch) | |
tree | 7c19af111ab5eaa829a472b4d30d76f58af3b9e8 /src/where.c | |
parent | cf0906575d4862d86e2e585f719cc474ef39bd36 (diff) | |
download | sqlite-1b96f9167f4beb4e67bb5fd0ee7f6cce9aa72e9d.tar.gz sqlite-1b96f9167f4beb4e67bb5fd0ee7f6cce9aa72e9d.zip |
Another very minor tweak to code on this branch to save cycles.
FossilOrigin-Name: 2c805dc68112db7f06aea56a731a33e046e876851bdda3e725ba96f6da1bf2ee
Diffstat (limited to 'src/where.c')
-rw-r--r-- | src/where.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/where.c b/src/where.c index 58fdf4055..b961417be 100644 --- a/src/where.c +++ b/src/where.c @@ -3576,7 +3576,7 @@ static void wherePartIdxExpr( if( aff>=SQLITE_AFF_TEXT ){ if( pItem ){ sqlite3 *db = pParse->db; - IndexedExpr *p = (IndexedExpr*)sqlite3DbMallocZero(db, sizeof(*p)); + IndexedExpr *p = (IndexedExpr*)sqlite3DbMallocRaw(db, sizeof(*p)); if( p ){ int bNullRow = (pItem->fg.jointype&(JT_LEFT|JT_LTORJ))!=0; p->pExpr = sqlite3ExprDup(db, pRight, 0); |