diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2013-06-27 15:14:09 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2013-06-27 15:14:09 +0200 |
commit | 50fc430ccd4305645007327c31026fb4e12fc6f5 (patch) | |
tree | 9dc9827727fac33ecd765a511661664d7db58837 /runtime/net.c | |
parent | 752e1c4b863346fe6eb8b6bc66d1d3bc3d346d13 (diff) | |
download | rsyslog-50fc430ccd4305645007327c31026fb4e12fc6f5.tar.gz rsyslog-50fc430ccd4305645007327c31026fb4e12fc6f5.tar.bz2 rsyslog-50fc430ccd4305645007327c31026fb4e12fc6f5.zip |
bugfix: in RFC5425 TLS, multiple wildcards in auth could cause segfault
Diffstat (limited to 'runtime/net.c')
-rw-r--r-- | runtime/net.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/net.c b/runtime/net.c index b291213e..13391cc0 100644 --- a/runtime/net.c +++ b/runtime/net.c @@ -232,6 +232,7 @@ finalize_it: /* enqueue the element */ if(pPeer->pWildcardRoot == NULL) { pPeer->pWildcardRoot = pNew; + pPeer->pWildcardLast = pNew; } else { pPeer->pWildcardLast->pNext = pNew; } |