Remove improper free of userdata; It's for the garbage collection to free

This commit is contained in:
Bernd Meyer 2016-03-30 11:53:39 +11:00 committed by Johny Mattsson
parent 41037ef304
commit f2991f555d
1 changed files with 0 additions and 1 deletions

View File

@ -238,7 +238,6 @@ static int crypto_hash_gcdelete (lua_State *L)
luaL_argcheck(L, dudat, 1, "crypto.hash expected"); luaL_argcheck(L, dudat, 1, "crypto.hash expected");
os_free(dudat->ctx); os_free(dudat->ctx);
os_free(dudat);
return 0; return 0;
} }