summaryrefslogtreecommitdiffstats
path: root/runtime
diff options
context:
space:
mode:
authorTomas Heinrich <theinric@redhat.com>2011-10-27 09:37:27 +0200
committerRainer Gerhards <rgerhards@adiscon.com>2011-10-27 09:37:27 +0200
commit9b305b5de54e4dd84a689e7642043253a1bbc94b (patch)
tree06762f60ce9ef75708d3e0027d44235990ee0fbf /runtime
parenteb87d6f095cc5e72126d8b7716d217a7d6a5e939 (diff)
downloadrsyslog-9b305b5de54e4dd84a689e7642043253a1bbc94b.tar.gz
rsyslog-9b305b5de54e4dd84a689e7642043253a1bbc94b.tar.xz
rsyslog-9b305b5de54e4dd84a689e7642043253a1bbc94b.zip
bugfix: potential abort after reading invalid X.509 certificate
closes: http://bugzilla.adiscon.com/show_bug.cgi?id=290 Signed-off-by: Rainer Gerhards <rgerhards@adiscon.com>
Diffstat (limited to 'runtime')
-rw-r--r--runtime/nsd_gtls.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/runtime/nsd_gtls.c b/runtime/nsd_gtls.c
index e1dcf870..ee78488a 100644
--- a/runtime/nsd_gtls.c
+++ b/runtime/nsd_gtls.c
@@ -201,10 +201,14 @@ finalize_it:
if(iRet != RS_RET_OK) {
if(data.data != NULL)
free(data.data);
- if(pThis->bOurCertIsInit)
+ if(pThis->bOurCertIsInit) {
gnutls_x509_crt_deinit(pThis->ourCert);
- if(pThis->bOurKeyIsInit)
+ pThis->bOurCertIsInit = 0;
+ }
+ if(pThis->bOurKeyIsInit) {
gnutls_x509_privkey_deinit(pThis->ourKey);
+ pThis->bOurKeyIsInit = 0;
+ }
}
RETiRet;
}