mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-20 13:10:43 +01:00
bugfix(minor): status variable was uninitialized
However, this would have caused harm only if NO parser modules at all were loaded, which would lead to a defunctional configuration at all. And, even more important, this is impossible as two parser modules are built-in and thus can not be "not loaded", so we always have a minimum of two.
This commit is contained in:
parent
404230c4bd
commit
96895d9e47
@ -1,3 +1,11 @@
|
||||
---------------------------------------------------------------------------
|
||||
Version 5.4.2 [v5-stable] (rgerhards), 2010-03-??
|
||||
- bugfix(minor): status variable was uninitialized
|
||||
However, this would have caused harm only if NO parser modules at
|
||||
all were loaded, which would lead to a defunctional configuration
|
||||
at all. And, even more important, this is impossible as two parser
|
||||
modules are built-in and thus can not be "not loaded", so we always
|
||||
have a minimum of two.
|
||||
- bugfix: testbench failed when not executed in UTC+1 timezone
|
||||
accidently, the time zone information was kept inside some
|
||||
to-be-checked-for responses
|
||||
|
||||
@ -448,7 +448,7 @@ ParsePRI(msg_t *pMsg)
|
||||
static rsRetVal
|
||||
ParseMsg(msg_t *pMsg)
|
||||
{
|
||||
rsRetVal localRet;
|
||||
rsRetVal localRet = RS_RET_ERR;
|
||||
parserList_t *pParserList;
|
||||
parser_t *pParser;
|
||||
bool bIsSanitized;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user