Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
ruanhaishen
Nodemcu Firmware
Commits
e99f4435
Commit
e99f4435
authored
Mar 30, 2016
by
Terry Ellison
Browse files
Merge pull request #1202 from DiUS/crypto-fix-double-free
Fixed double-free in crypto module
parents
1991dfee
f2991f55
Changes
1
Hide whitespace changes
Inline
Side-by-side
app/modules/crypto.c
View file @
e99f4435
...
...
@@ -238,7 +238,6 @@ static int crypto_hash_gcdelete (lua_State *L)
luaL_argcheck
(
L
,
dudat
,
1
,
"crypto.hash expected"
);
os_free
(
dudat
->
ctx
);
os_free
(
dudat
);
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