diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2009-01-30 13:41:12 +0100 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2009-01-30 13:41:12 +0100 |
commit | 82d7abc1f4b03f37ff94c5f184d49502b6cf489b (patch) | |
tree | 545c46fba724c62eab6db2382aa73c91e309a97d /runtime/msg.h | |
parent | 40514075c692195290306cd3928b5ce78f2aa38c (diff) | |
download | rsyslog-82d7abc1f4b03f37ff94c5f184d49502b6cf489b.tar.gz rsyslog-82d7abc1f4b03f37ff94c5f184d49502b6cf489b.tar.xz rsyslog-82d7abc1f4b03f37ff94c5f184d49502b6cf489b.zip |
bugfix: invalid mutex access in msg.c
Diffstat (limited to 'runtime/msg.h')
-rw-r--r-- | runtime/msg.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/msg.h b/runtime/msg.h index c428237a..fadbb48a 100644 --- a/runtime/msg.h +++ b/runtime/msg.h @@ -51,6 +51,7 @@ struct msg { BEGINobjInstance; /* Data to implement generic object - MUST be the first data element! */ pthread_mutexattr_t mutAttr; +short bDoLock; /* use the mutex? */ pthread_mutex_t mut; int iRefCount; /* reference counter (0 = unused) */ short bParseHOSTNAME; /* should the hostname be parsed from the message? */ |