I am seeing an assert crash on my system here. I think it is caused by the following code,
--select.c (line 88)----------------------------------------------
/*
** Delete the given Select structure and all of its substructures.
*/
void sqlite3SelectDelete(Select *p){
if( p ){
clearSelect(p);
sqliteFree(p);
}
}
------------------------------------------------------------------
I think it should be:
if ( *p )
Mario Hebert
Legerity

