diff options
| author | Ted Ross <tross@apache.org> | 2013-05-03 13:47:32 +0000 |
|---|---|---|
| committer | Ted Ross <tross@apache.org> | 2013-05-03 13:47:32 +0000 |
| commit | a12367d5e1e37ce43c59d592ff33a09394ceb629 (patch) | |
| tree | 0cc23acf09dba9f8dbcf654cfec0527a93ba4371 /extras/dispatch | |
| parent | 51c3dd9c04fda5c9c372c109d764ec5519218ee1 (diff) | |
| download | qpid-python-a12367d5e1e37ce43c59d592ff33a09394ceb629.tar.gz | |
NO-JIRA - Added missing item initialization in the log module.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1478793 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'extras/dispatch')
| -rw-r--r-- | extras/dispatch/src/log.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/extras/dispatch/src/log.c b/extras/dispatch/src/log.c index 711d478e32..9b1cb87e29 100644 --- a/extras/dispatch/src/log.c +++ b/extras/dispatch/src/log.c @@ -68,6 +68,7 @@ void dx_log_impl(const char *module, int cls, const char *file, int line, const return; dx_log_entry_t *entry = new_dx_log_entry_t(); + DEQ_ITEM_INIT(entry); entry->module = module; entry->cls = cls; entry->file = file; |
