diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2013-05-13 08:23:17 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2013-05-13 08:23:17 +0200 |
commit | bcc0f0ae4df189a57bc5dd042d31aeed876b8e36 (patch) | |
tree | ff43540e078e84cda73b41764af8e9c0363050d3 /runtime/libgcry_common.c | |
parent | 0817fc95a810df497c52200c772fac743ca84dde (diff) | |
download | rsyslog-bcc0f0ae4df189a57bc5dd042d31aeed876b8e36.tar.gz rsyslog-bcc0f0ae4df189a57bc5dd042d31aeed876b8e36.tar.bz2 rsyslog-bcc0f0ae4df189a57bc5dd042d31aeed876b8e36.zip |
bugfix: invalid addressing in string class (recent regression)
Diffstat (limited to 'runtime/libgcry_common.c')
-rw-r--r-- | runtime/libgcry_common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/libgcry_common.c b/runtime/libgcry_common.c index 63b5e5d5..07a524dc 100644 --- a/runtime/libgcry_common.c +++ b/runtime/libgcry_common.c @@ -98,7 +98,7 @@ fprintf(stderr, "pre execve: %s\n", cmd); */ /* we should never reach this point, but if we do, we terminate */ -done: return; + return; } |