On 9/6/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
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 )
Why do you think so? The other way seems a good way to check for a non null pointer. "*p" is a structure. What does testing a structure for non-zero do? ----------------------------------------------------------------------------- To unsubscribe, send email to [EMAIL PROTECTED] -----------------------------------------------------------------------------

