summaryrefslogtreecommitdiff
path: root/extras/dispatch
diff options
context:
space:
mode:
authorTed Ross <tross@apache.org>2013-05-03 13:47:32 +0000
committerTed Ross <tross@apache.org>2013-05-03 13:47:32 +0000
commita12367d5e1e37ce43c59d592ff33a09394ceb629 (patch)
tree0cc23acf09dba9f8dbcf654cfec0527a93ba4371 /extras/dispatch
parent51c3dd9c04fda5c9c372c109d764ec5519218ee1 (diff)
downloadqpid-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.c1
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;