projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
769fedc
)
Plug potential memory leak.
author
Richard Levitte
<levitte@openssl.org>
Wed, 30 Oct 2002 09:42:42 +0000
(09:42 +0000)
committer
Richard Levitte
<levitte@openssl.org>
Wed, 30 Oct 2002 09:42:42 +0000
(09:42 +0000)
Identified by Goetz Babin-Ebell <babinebell@trustcenter.de>
crypto/pem/pem_lib.c
patch
|
blob
|
history
diff --git
a/crypto/pem/pem_lib.c
b/crypto/pem/pem_lib.c
index 7066e67b39a9f791d134de9bab94e421deab9c65..bfc43e90afea5e16aa1ccd3ea8414560bb6c0ba8 100644
(file)
--- a/
crypto/pem/pem_lib.c
+++ b/
crypto/pem/pem_lib.c
@@
-251,7
+251,7
@@
int PEM_bytes_read_bio(unsigned char **pdata, long *plen, char **pnm, const char
ret = 1;
err:
- if (!pnm) OPENSSL_free(nm);
+ if (!
ret || !
pnm) OPENSSL_free(nm);
OPENSSL_free(header);
if (!ret) OPENSSL_free(data);
return ret;