summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2008-05-02 10:25:07 +0200
committerRainer Gerhards <rgerhards@adiscon.com>2008-05-02 10:25:07 +0200
commit273224d7c58345048032498c00d00e4b69d8dc34 (patch)
treece87ea6b55391fa68817b92775c4c171dbbd3c55
parent824ef91438af118ffa6972f45f19844b1ed2ec43 (diff)
downloadrsyslog-273224d7c58345048032498c00d00e4b69d8dc34.tar.gz
rsyslog-273224d7c58345048032498c00d00e4b69d8dc34.tar.xz
rsyslog-273224d7c58345048032498c00d00e4b69d8dc34.zip
fixed a bug in imklog which lead to startup problems
... (including segfault) on some platforms under some circumsances. Thanks to Vieri for reporting this bug and helping to troubleshoot it.
-rw-r--r--ChangeLog5
-rw-r--r--configure.ac2
-rw-r--r--plugins/imklog/ksym_mod.c1
3 files changed, 6 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 4e16f472..6b64b0f6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,9 @@
---------------------------------------------------------------------------
+Version 3.16.1 (rgerhards), 2008-05-02
+- fixed a bug in imklog which lead to startup problems (including
+ segfault) on some platforms under some circumsances. Thanks to
+ Vieri for reporting this bug and helping to troubleshoot it.
+---------------------------------------------------------------------------
Version 3.16.0 (rgerhards), 2008-04-24
- new v3-stable (3.16.x) based on beta 3.15.x (RELP support)
- bugfix: omsnmp had a too-small sized buffer for hostname+port. This
diff --git a/configure.ac b/configure.ac
index a1595bd2..8f107207 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2,7 +2,7 @@
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.61)
-AC_INIT([rsyslog],[3.16.0],[rsyslog@lists.adiscon.com])
+AC_INIT([rsyslog],[3.16.1],[rsyslog@lists.adiscon.com])
AM_INIT_AUTOMAKE
AC_CONFIG_SRCDIR([syslogd.c])
AC_CONFIG_HEADERS([config.h])
diff --git a/plugins/imklog/ksym_mod.c b/plugins/imklog/ksym_mod.c
index 11535a5f..3e064e20 100644
--- a/plugins/imklog/ksym_mod.c
+++ b/plugins/imklog/ksym_mod.c
@@ -163,7 +163,6 @@ extern int InitMsyms(void)
else
Syslog(LOG_ERR, "Error loading kernel symbols " \
"- %s\n", strerror(errno));
- fclose(ksyms);
return(0);
}