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
b199095e
Commit
b199095e
authored
Feb 18, 2015
by
Manuel Pégourié-Gonnard
Browse files
Finish fixing memleak in ssl_server2 arg parsing
Fixes omission in
5c078e17
parent
915fc15c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
programs/ssl/ssl_server2.c
programs/ssl/ssl_server2.c
+1
-1
No files found.
programs/ssl/ssl_server2.c
View file @
b199095e
...
...
@@ -587,7 +587,7 @@ psk_entry *psk_parse( char *psk_string )
while
(
p
<=
end
)
{
if
(
(
new
=
polarssl_malloc
(
sizeof
(
psk_entry
)
)
)
==
NULL
)
return
(
NULL
)
;
goto
error
;
memset
(
new
,
0
,
sizeof
(
psk_entry
)
);
...
...
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