Hi all,

I just notice that the new code I just check out from  cvs repository is
total not work for compiled EXE, DLL, or LIB.

One of the error message:
Unhandled exception at 0x0040e209 in sqlite3.exe: 0xC0000005: Access
violation reading location 0x0000001f.
------------

void sqlite3ExprDelete(Expr *p){
  if( p==0 ) return;
  if( p->span.dyn ) sqliteFree((char*)p->span.z);
  if( p->token.dyn ) sqliteFree((char*)p->token.z);
  sqlite3ExprDelete(p->pLeft);
  sqlite3ExprDelete(p->pRight);
  sqlite3ExprListDelete(p->pList);
  sqlite3SelectDelete(p->pSelect);
  sqliteFree(p);
}

------------
debug show p = 0xffffffff

Regards,

Ming

Reply via email to