NAS EPS: fix compile error on older GCC

error: variable ‘handle’ might be clobbered by ‘longjmp’ or ‘vfork’ [-Werror=clobbered]

Change-Id: I2c08b9f34171dfb9fc31b1651d1e66a268274b6d
Reviewed-on: https://code.wireshark.org/review/33335
Petri-Dish: Pascal Quantin <pascal@wireshark.org>
Tested-by: Petri Dish Buildbot
Reviewed-by: Pascal Quantin <pascal@wireshark.org>
This commit is contained in:
Joakim Karlsson 2019-05-23 18:02:25 +02:00 committed by Pascal Quantin
parent e0fe5cfe92
commit ee36a83b7a
1 changed files with 1 additions and 1 deletions

View File

@ -3649,7 +3649,7 @@ de_esm_user_data_cont(tvbuff_t *tvb, proto_tree *tree, packet_info *pinfo _U_,
if (g_nas_eps_user_data_container_as_ip) {
proto_tree *subtree;
tvbuff_t *user_data_cont_tvb;
dissector_handle_t handle;
volatile dissector_handle_t handle;
guint8 first_byte;
subtree = proto_item_add_subtree(it, ett_nas_eps_esm_user_data_cont);