git://scientific.zcu.cz
/
jra1mw.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c6f6ba6
)
Fixed memory leaks in libgridsite (GGUS 86453)
author
Marcel Poul
<marcel.poul@cern.ch>
Thu, 27 Sep 2012 15:17:22 +0000
(15:17 +0000)
committer
Marcel Poul
<marcel.poul@cern.ch>
Thu, 27 Sep 2012 15:17:22 +0000
(15:17 +0000)
org.gridsite.core/src/grst_x509.c
patch
|
blob
|
blame
|
history
diff --git
a/org.gridsite.core/src/grst_x509.c
b/org.gridsite.core/src/grst_x509.c
index
4e1760f
..
f088637
100644
(file)
--- a/
org.gridsite.core/src/grst_x509.c
+++ b/
org.gridsite.core/src/grst_x509.c
@@
-2165,6
+2165,7
@@
int GRSTx509CreateProxyRequest(char **reqtxt, char **keytxt, char *ocspurl)
BIO_free(reqmem);
X509_REQ_free(certreq);
+ EVP_PKEY_free(pkey);
return 0;
}
@@
-2267,6
+2268,7
@@
int GRSTx509MakeProxyRequest(char **reqtxt, char *proxydir,
BIO_free(reqmem);
X509_REQ_free(certreq);
+ EVP_PKEY_free(pkey);
return 0;
}