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
BC
public
external
mbedtls
Commits
9395298d
Commit
9395298d
authored
Mar 20, 2015
by
Manuel Pégourié-Gonnard
Browse files
Fix use of deprecated function in the library
parent
e658176d
Changes
1
Hide whitespace changes
Inline
Side-by-side
library/hmac_drbg.c
View file @
9395298d
...
...
@@ -314,7 +314,7 @@ void hmac_drbg_free( hmac_drbg_context *ctx )
if
(
ctx
==
NULL
)
return
;
md_free
_ctx
(
&
ctx
->
md_ctx
);
md_free
(
&
ctx
->
md_ctx
);
polarssl_zeroize
(
ctx
,
sizeof
(
hmac_drbg_context
)
);
}
...
...
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