aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-radius.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2012-12-04 14:38:38 +0000
committerBill Meier <wmeier@newsguy.com>2012-12-04 14:38:38 +0000
commitddb2a90dd02c7a1b8691575d83f07f79b1c6d3fe (patch)
tree48fc3c79c87ce84853fede86d673e88e0318567e /epan/dissectors/packet-radius.c
parent357ea3fc88d43fb5a9c373bbcf1ad73b79f718e2 (diff)
Fix [-Wshadow] warning.
svn path=/trunk/; revision=46367
Diffstat (limited to 'epan/dissectors/packet-radius.c')
-rw-r--r--epan/dissectors/packet-radius.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/epan/dissectors/packet-radius.c b/epan/dissectors/packet-radius.c
index a6e9719dfb..b957c120a7 100644
--- a/epan/dissectors/packet-radius.c
+++ b/epan/dissectors/packet-radius.c
@@ -953,8 +953,8 @@ void dissect_attribute_value_pairs(proto_tree *tree, packet_info *pinfo, tvbuff_
* In case we throw an exception, clean up whatever stuff we've
* allocated (if any).
*/
- CLEANUP_PUSH(g_free, eap_buffer);
- CLEANUP_PUSH(vsa_buffer_table_destroy, (void *)vsa_buffer_table);
+ CLEANUP_PUSH_PFX(la, g_free, eap_buffer);
+ CLEANUP_PUSH_PFX(lb, vsa_buffer_table_destroy, (void *)vsa_buffer_table);
while (length > 0) {
radius_attr_info_t* dictionary_entry = NULL;
@@ -1299,13 +1299,13 @@ void dissect_attribute_value_pairs(proto_tree *tree, packet_info *pinfo, tvbuff_
} /* while (length > 0) */
- CLEANUP_CALL_AND_POP; /* vsa_buffer_table_destroy(vsa_buffer_table) */
+ CLEANUP_CALL_AND_POP_PFX(lb); /* vsa_buffer_table_destroy(vsa_buffer_table) */
/*
* Call the cleanup handler to free any reassembled data we haven't
* attached to a tvbuff, and pop the handler.
*/
- CLEANUP_CALL_AND_POP;
+ CLEANUP_CALL_AND_POP_PFX(la);
}
/* This function tries to determine whether a packet is radius or not */