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 | c8cb34f7c0344d8102ffdf6a1ca6ab7fcec8398b (patch) | |
| tree | 811f49b4fc7cd8f0438a92d5645bfddef99e42ca /qpid/extras/dispatch/src | |
| parent | e3155b793a937ec715b40fce6282806ba7a6d9d1 (diff) | |
| download | qpid-python-c8cb34f7c0344d8102ffdf6a1ca6ab7fcec8398b.tar.gz | |
NO-JIRA - Added missing item initialization in the log module.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1478793 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/extras/dispatch/src')
| -rw-r--r-- | qpid/extras/dispatch/src/log.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/qpid/extras/dispatch/src/log.c b/qpid/extras/dispatch/src/log.c index 711d478e32..9b1cb87e29 100644 --- a/qpid/extras/dispatch/src/log.c +++ b/qpid/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; |
