On Wed, Sep 08, 2004 at 11:10:35AM -0400, D. Richard Hipp wrote:
> 
> Please try again with the lastest version under CVS and see if it helps.
> Check-in [1948] will have fixed this problem if I am not badly mistaken.

That's not the solution.  Your btree cursor (and other pointers) are
being truncated:

646  sprintf(zBuf,"0x%x", (int)pCur);
647  Tcl_AppendResult(interp, zBuf, 0);
648  return SQLITE_OK;

105  if( Tcl_GetInt(interp, argv[1], (int*)&pBt) ) return TCL_ERROR;

132  if( Tcl_GetInt(interp, argv[1], (int*)&pBt) ) return TCL_ERROR;

767  if( Tcl_GetIntFromObj(interp, objv[1], (int*)&pCur) ) return TCL_ERROR;

Cheers,

Matt

Reply via email to