summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2010-01-12 13:33:51 +0100
committerRainer Gerhards <rgerhards@adiscon.com>2010-01-12 13:33:51 +0100
commitd7277484811249b7acacb45a223928980e1a36b4 (patch)
treea9fc69c013b34b79904d6cb9d0c9a0242e5466e4
parentd3592db45bfc4939c2d72c73a42ed9f79cb64052 (diff)
parentf88291d561eb785317a39a644c53a0cf86633eaa (diff)
downloadrsyslog-d7277484811249b7acacb45a223928980e1a36b4.tar.gz
rsyslog-d7277484811249b7acacb45a223928980e1a36b4.tar.xz
rsyslog-d7277484811249b7acacb45a223928980e1a36b4.zip
Merge branch 'v4-beta' into beta
-rw-r--r--ChangeLog2
-rw-r--r--doc/rsyslog_conf_actions.html10
-rw-r--r--tools/omfwd.c6
3 files changed, 11 insertions, 7 deletions
diff --git a/ChangeLog b/ChangeLog
index a52261de..826e41e1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,5 @@
+- fixed a memory leak when sending messages in zip-compressed format
+ Thanks to Naoya Nakazawa for analyzing this issue and providing a patch.
---------------------------------------------------------------------------
Version 5.3.6 [BETA] (rgerhards), 2009-11-??
- bugfix: ompgsql did not properly check the server connection in
diff --git a/doc/rsyslog_conf_actions.html b/doc/rsyslog_conf_actions.html
index 2ef3f4b0..8c4b9cfc 100644
--- a/doc/rsyslog_conf_actions.html
+++ b/doc/rsyslog_conf_actions.html
@@ -98,18 +98,14 @@ done, same with /dev/console.</p>
messages to a remote host running rsyslogd(8) and to receive messages
from remote hosts. Using this feature you're able to control all syslog
messages on one host, if all other machines will log remotely to that.
-This tears down<br>
-administration needs.<br>
-<br>
-<b>Please note that this version of rsyslogd by default does NOT
-forward messages it has received from the network to another host.
-Specify the "-h" option to enable this.</b></p>
+This tears down administration needs.</p>
<p>To forward messages to another host, prepend the hostname with
the at sign ("@"). A single at sign means that messages will
be forwarded via UDP protocol (the standard for syslog). If you prepend
two at signs ("@@"), the messages will be transmitted via TCP. Please
note that plain TCP based syslog is not officially standardized, but
-most major syslogds support it (e.g. syslog-ng or WinSyslog). The
+most major syslogds support it (e.g. syslog-ng or
+<a href="http://www.winsyslog.com/">WinSyslog</a>). The
forwarding action indicator (at-sign) can be followed by one or more
options. If they are given, they must be immediately (without a space)
following the final at sign and be enclosed in parenthesis. The
diff --git a/tools/omfwd.c b/tools/omfwd.c
index 76beb486..0fac251b 100644
--- a/tools/omfwd.c
+++ b/tools/omfwd.c
@@ -483,6 +483,12 @@ CODESTARTdoAction
}
}
finalize_it:
+# ifdef USE_NETZIP
+ if(psz != (char*) ppString[0]) {
+ /* we need to free temporary buffer, alloced above - Naoya Nakazawa, 2010-01-11 */
+ free(psz);
+ }
+# endif
ENDdoAction