diff options
author | drh <> | 2021-02-05 17:34:47 +0000 |
---|---|---|
committer | drh <> | 2021-02-05 17:34:47 +0000 |
commit | 29f6a365ccd09fdf922125f324d13d2cac34d3e4 (patch) | |
tree | 83811b294aa34b40b3f2ff8e0bc92fb50af0de3b /src/sqliteInt.h | |
parent | 70bd2124ed8dba89ee3ad2ccb25c5686b1d0ead5 (diff) | |
download | sqlite-29f6a365ccd09fdf922125f324d13d2cac34d3e4.tar.gz sqlite-29f6a365ccd09fdf922125f324d13d2cac34d3e4.zip |
Remove unreachable code. Fix a shift UB problem introduced yesterday
and discovered by OSSFuzz.
FossilOrigin-Name: 078dbff04a95a001bbd8690ab08038fbb5506899df8290991b53fd1122a4c30c
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 7b22b6b3b..093ce7621 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -2762,7 +2762,7 @@ struct Expr { #define EP_ConstFunc 0x080000 /* A SQLITE_FUNC_CONSTANT or _SLOCHNG function */ #define EP_CanBeNull 0x100000 /* Can be null despite NOT NULL constraint */ #define EP_Subquery 0x200000 /* Tree contains a TK_SELECT operator */ -#define EP_Alias 0x400000 /* Is an alias for a result set column */ + /* 0x400000 // Available */ #define EP_Leaf 0x800000 /* Expr.pLeft, .pRight, .u.pSelect all NULL */ #define EP_WinFunc 0x1000000 /* TK_FUNCTION with Expr.y.pWin set */ #define EP_Subrtn 0x2000000 /* Uses Expr.y.sub. TK_IN, _SELECT, or _EXISTS */ |