diff options
author | Tony Garnock-Jones <tonyg@kcbbs.gen.nz> | 2009-08-12 06:46:39 +0100 |
---|---|---|
committer | Tony Garnock-Jones <tonyg@kcbbs.gen.nz> | 2009-08-12 06:46:39 +0100 |
commit | 8387f05f9828268eaa30df196057e175100644e6 (patch) | |
tree | 809a38dc7ca744b1658196622cc7a626ce6242f6 /librabbitmq | |
parent | af3e50ba6af5ad39be52bb3b092cd9da016cb854 (diff) | |
download | rabbitmq-c-github-ask-8387f05f9828268eaa30df196057e175100644e6.tar.gz |
Add missing flagword_index increment
Diffstat (limited to 'librabbitmq')
-rw-r--r-- | librabbitmq/codegen.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/librabbitmq/codegen.py b/librabbitmq/codegen.py index 30cb79c..2775bb2 100644 --- a/librabbitmq/codegen.py +++ b/librabbitmq/codegen.py @@ -294,6 +294,7 @@ int amqp_decode_properties(uint16_t class_id, partial_flags = D_16(encoded, offset); offset += 2; flags |= (partial_flags << (flagword_index * 16)); + flagword_index++; } while (partial_flags & 1); switch (class_id) {""" |