diff options
| author | Ted Ross <tross@apache.org> | 2013-05-30 21:37:09 +0000 |
|---|---|---|
| committer | Ted Ross <tross@apache.org> | 2013-05-30 21:37:09 +0000 |
| commit | 6394420bc141991ad4deb2bcf51a497f0eac28a1 (patch) | |
| tree | a767d4bc2e73eb1459a631f6aa35589a741266a8 | |
| parent | b7d4735fa7140f9c0d978d3579d98e3452022131 (diff) | |
| download | qpid-python-6394420bc141991ad4deb2bcf51a497f0eac28a1.tar.gz | |
NO-JIRA - Fixed a warning thrown in Release mode on older compilers.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1488021 13f79535-47bb-0310-9956-ffa450edef68
| -rw-r--r-- | qpid/extras/dispatch/src/iterator.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/extras/dispatch/src/iterator.c b/qpid/extras/dispatch/src/iterator.c index 676413382e..3998cd9f94 100644 --- a/qpid/extras/dispatch/src/iterator.c +++ b/qpid/extras/dispatch/src/iterator.c @@ -401,7 +401,7 @@ static dx_field_iterator_t *dx_field_parse_amqp_value(dx_field_iterator_t *iter, value->view_prefix = 0; unsigned char tag = dx_field_iterator_octet(iter); - unsigned int length; + unsigned int length = 0; unsigned int length_size = 0; (*available)--; |
