summaryrefslogtreecommitdiff
path: root/asn1/atn-cpdlc
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2014-04-15 22:34:07 -0400
committerBill Meier <wmeier@newsguy.com>2014-04-16 03:05:21 +0000
commitd063b324e4f4d877099de5e9a8b2dfb2428c6961 (patch)
tree59939144c26541772dd7101031ec9e3078eb632f /asn1/atn-cpdlc
parent53cb2b7159af5f1cdee64e8949c1bf11a021ce4d (diff)
downloadwireshark-d063b324e4f4d877099de5e9a8b2dfb2428c6961.tar.gz
Fix "might be clobbered by 'longjmp' or 'vfork' [-Werror=clobbered]" warning from gcc 4.9.
Change-Id: I8495d746f47c0e2528f88295771f86197d22d159 Reviewed-on: https://code.wireshark.org/review/1166 Reviewed-by: Bill Meier <wmeier@newsguy.com> Tested-by: Bill Meier <wmeier@newsguy.com>
Diffstat (limited to 'asn1/atn-cpdlc')
-rw-r--r--asn1/atn-cpdlc/packet-atn-cpdlc-template.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/asn1/atn-cpdlc/packet-atn-cpdlc-template.c b/asn1/atn-cpdlc/packet-atn-cpdlc-template.c
index a48c42950f..66f0a83c3b 100644
--- a/asn1/atn-cpdlc/packet-atn-cpdlc-template.c
+++ b/asn1/atn-cpdlc/packet-atn-cpdlc-template.c
@@ -216,8 +216,8 @@ dissect_atn_cpdlc_heur(
void *data _U_)
{
atn_conversation_t *atn_cv = NULL;
- gboolean is_atn_cpdlc = FALSE;
- gboolean is_pm = FALSE;
+ volatile gboolean is_atn_cpdlc = FALSE;
+ volatile gboolean is_pm = FALSE;
int type = no_msg;
type = check_heur_msg_type(pinfo);