Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ruanhaishen
Nodemcu Firmware
Commits
f2991f55
Commit
f2991f55
authored
Mar 30, 2016
by
Bernd Meyer
Committed by
Johny Mattsson
Mar 30, 2016
Browse files
Remove improper free of userdata; It's for the garbage collection to free
parent
41037ef3
Changes
1
Hide whitespace changes
Inline
Side-by-side
app/modules/crypto.c
View file @
f2991f55
...
@@ -238,7 +238,6 @@ static int crypto_hash_gcdelete (lua_State *L)
...
@@ -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
;
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment