[sqlite] sqlite3.c:89394: int sqlite3ExprCompare(Expr *, Expr *, int): Assertion `0' failed.

2015-12-20 Thread Jonathan Metzman
(a,b,t); CREATE INDEX i ON t0(a in(0,0)); INSERT INTO t0 VALUES(0,0,0); UPDATE t0 SET b=0 WHERE a in(0,0)=0; Running the same case without assertions on doesn't seem to cause a crash of any kind. I also tried running it without assertions and with asan/msan and there was no crash there either.

[sqlite] Deference of Unitialized Pointer in shell_dbinfo_command in the sqlite shell (3.9.2)

2015-11-17 Thread Jonathan Metzman
: > On 11/17/15, Jonathan Metzman wrote: > > When fuzzing sqlite with American Fuzzy Lop, I believe I found the > > following bug in the sqlite shell: > > > > Thanks for the report. Joe has checked in a fix. > > Be careful about running AFL on the "sql

[sqlite] Deference of Unitialized Pointer in shell_dbinfo_command in the sqlite shell (3.9.2)

2015-11-17 Thread Jonathan Metzman
le = NULL; Would fix this problem. Thank you, Jonathan Metzman