diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2009-06-25 18:23:03 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2009-06-25 18:23:03 +0200 |
commit | 07a7152ea0ec499a481942e9003079efffd7bb8f (patch) | |
tree | e1fe505b7f256f0a18893c9cdd5514f46080512b /runtime | |
parent | 12dc91a157cf2375596920c1f4f7c361ad717103 (diff) | |
download | rsyslog-07a7152ea0ec499a481942e9003079efffd7bb8f.tar.gz rsyslog-07a7152ea0ec499a481942e9003079efffd7bb8f.tar.xz rsyslog-07a7152ea0ec499a481942e9003079efffd7bb8f.zip |
bugfix: msg_t mutex was sometimes initialized twice
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/parser.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/runtime/parser.c b/runtime/parser.c index 0a27c982..d4ca7673 100644 --- a/runtime/parser.c +++ b/runtime/parser.c @@ -307,7 +307,6 @@ rsRetVal parseMsg(msg_t *pMsg) /* finalize message object */ pMsg->msgFlags &= ~NEEDS_PARSING; /* this message is now parsed */ - MsgPrepareEnqueue(pMsg); /* "historical" name - preparese for multi-threading */ finalize_it: RETiRet; |