btatt - make size 32-bit in get_value()

Bug: 11817
Change-Id: I118ff55f9a709167976a2522114d65ec03fc68c5
Reviewed-on: https://code.wireshark.org/review/12353
Reviewed-by: Guy Harris <guy@alum.mit.edu>
This commit is contained in:
Michael Mann 2015-12-01 20:12:18 -05:00 committed by Guy Harris
parent 6655dd93e5
commit 83bad0215d
1 changed files with 2 additions and 2 deletions

View File

@ -5983,8 +5983,8 @@ get_value(packet_info *pinfo, guint32 handle, bluetooth_data_t *bluetooth_data,
guint32 frame_number;
fragment_data_t *fragment_data;
wmem_tree_t *sub_wmemtree;
guint16 last_offset = 0xFFFF;
guint16 size;
guint last_offset = G_MAXUINT;
guint size;
gboolean first = TRUE;
guint8 *data = NULL;