1
0
Fork 0
mirror of https://github.com/DBD-SQLite/DBD-SQLite synced 2025-06-07 22:28:47 -04:00

fixed a leak

This commit is contained in:
Kenichi Ishigaki 2011-10-05 14:39:23 +00:00
parent 7db8c900f5
commit 95f523161d

View file

@ -2241,6 +2241,7 @@ static int perl_tokenizer_Close(sqlite3_tokenizer_cursor *pCursor){
dTHX;
sv_free(c->coderef);
if (c->pToken) sqlite3_free(c->pToken);
sqlite3_free(c);
return SQLITE_OK;
}