From 4c74b822ca36825bfc88cba7c468e6cf868c3a00 Mon Sep 17 00:00:00 2001 From: Stefan Seyfried Date: Sat, 9 Nov 2013 14:39:29 +0100 Subject: [PATCH] spark: add missing initialization of flt variable --- libspark/dmx.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/libspark/dmx.cpp b/libspark/dmx.cpp index 9cd8515..41fa500 100644 --- a/libspark/dmx.cpp +++ b/libspark/dmx.cpp @@ -357,6 +357,7 @@ bool cDemux::sectionFilter(unsigned short _pid, const unsigned char * const filt lt_info("%s #%d: len too long: %d, DMX_FILTER_SIZE %d\n", __func__, num, len, DMX_FILTER_SIZE); len = DMX_FILTER_SIZE; } + flt = filter[0]; s_flt.pid = pid; s_flt.timeout = timeout; memcpy(s_flt.filter.filter, filter, len);