Re: [sqlite] Bug report: crash in selectExpander()

2012-03-01 Thread Richard Hipp
On Thu, Mar 1, 2012 at 10:11 AM, dead beef <0xdead.n...@gmail.com> wrote: > The following query causes a crash (null-pointer dereference): > > $ sqlite3 > SQLite version 3.7.4 > Enter ".help" for instructions > Enter SQL statements terminated with a ";" > sqlite> SELECT 1 FROM ( SELECT 1 ) INNER J

[sqlite] Bug report: crash in selectExpander()

2012-03-01 Thread dead beef
The following query causes a crash (null-pointer dereference): $ sqlite3 SQLite version 3.7.4 Enter ".help" for instructions Enter SQL statements terminated with a ";" sqlite> SELECT 1 FROM ( SELECT 1 ) INNER JOIN ( SELECT * ) USING ( c ); Segmentation fault ___