You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by gs...@apache.org on 2018/11/12 20:38:17 UTC

qpid-dispatch git commit: DISPATCH-1181: ensure local variable is initialised before it is used

Repository: qpid-dispatch
Updated Branches:
  refs/heads/master 7699d55b0 -> 48845b998


DISPATCH-1181: ensure local variable is initialised before it is used


Project: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/repo
Commit: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/commit/48845b99
Tree: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/tree/48845b99
Diff: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/diff/48845b99

Branch: refs/heads/master
Commit: 48845b99848de3864bbe4246376237d5762b2de8
Parents: 7699d55
Author: Gordon Sim <gs...@redhat.com>
Authored: Mon Nov 12 20:37:44 2018 +0000
Committer: Gordon Sim <gs...@redhat.com>
Committed: Mon Nov 12 20:37:44 2018 +0000

----------------------------------------------------------------------
 python/qpid_dispatch_internal/router/data.py | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/qpid-dispatch/blob/48845b99/python/qpid_dispatch_internal/router/data.py
----------------------------------------------------------------------
diff --git a/python/qpid_dispatch_internal/router/data.py b/python/qpid_dispatch_internal/router/data.py
index 810f98d..d299e72 100644
--- a/python/qpid_dispatch_internal/router/data.py
+++ b/python/qpid_dispatch_internal/router/data.py
@@ -277,6 +277,7 @@ class MessageMAU(object):
         _add = ''
         _del = ''
         _exist = ''
+        _hints = ''
         if self.add_list != None:   _add   = ' add=%r'   % self.add_list
         if self.del_list != None:   _del   = ' del=%r'   % self.del_list
         if self.exist_list != None: _exist = ' exist=%r' % self.exist_list


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org