From: /C=DE/ST=Berlin/L=Berlin/O=Netfilter Project/OU=Development/CN=kaber/emailAddress=kaber@netfilter.org Date: Wed, 11 Oct 2006 06:38:30 +0000 (+0000) Subject: [PATCH]: fix crash in ULOG input plugin due to a free on invalid value (Eric Leblond) X-Git-Tag: ulogd-2.0.0beta2~165 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=78ac24bdf7bf78f6d08f0e99840e7d6745dafa42;p=thirdparty%2Fulogd2.git [PATCH]: fix crash in ULOG input plugin due to a free on invalid value (Eric Leblond) --- diff --git a/input/packet/ulogd_inppkt_ULOG.c b/input/packet/ulogd_inppkt_ULOG.c index 86476ce..d9aa600 100644 --- a/input/packet/ulogd_inppkt_ULOG.c +++ b/input/packet/ulogd_inppkt_ULOG.c @@ -58,12 +58,12 @@ static struct config_keyset libulog_kset = { static struct ulogd_key output_keys[] = { { .type = ULOGD_RET_STRING, - .flags = ULOGD_RETF_FREE, + .flags = ULOGD_RETF_NONE, .name = "raw.mac", }, { .type = ULOGD_RET_RAW, - .flags = ULOGD_RETF_FREE, + .flags = ULOGD_RETF_NONE, .name = "raw.pkt", .ipfix = { .vendor = IPFIX_VENDOR_NETFILTER,