diff options
author | dan <dan@noemail.net> | 2013-07-18 18:28:04 +0000 |
---|---|---|
committer | dan <dan@noemail.net> | 2013-07-18 18:28:04 +0000 |
commit | 28f8aebf75a95ee67105e0a58ca734ff0ccb2c8b (patch) | |
tree | 019e108de3ebd54e306ead672fda3081402a1706 /src | |
parent | 0c5477997b82bfd4b952414faf9733377d0248f7 (diff) | |
download | sqlite-28f8aebf75a95ee67105e0a58ca734ff0ccb2c8b.tar.gz sqlite-28f8aebf75a95ee67105e0a58ca734ff0ccb2c8b.zip |
Fix a typo in the previous commit.
FossilOrigin-Name: cd9096e64b86c8d45f6744e6eb6ced2aa1a18279
Diffstat (limited to 'src')
-rw-r--r-- | src/vdbe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vdbe.c b/src/vdbe.c index c568d51fa..af135f530 100644 --- a/src/vdbe.c +++ b/src/vdbe.c @@ -1450,7 +1450,7 @@ case OP_Function: { /* If any auxiliary data functions have been called by this user function, ** immediately call the destructor for any non-static values. */ - sqlite3VdbeDeleteAuxData(ppc, pc, pOp->p1); + sqlite3VdbeDeleteAuxData(p, pc, pOp->p1); if( db->mallocFailed ){ /* Even though a malloc() has failed, the implementation of the |