diff options
author | Guy Harris <guy@alum.mit.edu> | 2007-12-06 08:22:16 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2007-12-06 08:22:16 +0000 |
commit | a3d7a2c66f4ce4a7161749476fdf90fc64edc090 (patch) | |
tree | f02ccee6088ea3e9bfff8c5f425340a4adc5a405 | |
parent | 73a7469bb17e4d06b3aea3ce2a2e9401ff85f520 (diff) | |
download | wireshark-a3d7a2c66f4ce4a7161749476fdf90fc64edc090.tar.gz wireshark-a3d7a2c66f4ce4a7161749476fdf90fc64edc090.tar.bz2 wireshark-a3d7a2c66f4ce4a7161749476fdf90fc64edc090.zip |
Squelch a warning about a variable getting clobbered by a longjmp.
svn path=/trunk/; revision=23780
-rw-r--r-- | epan/dissectors/packet-sctp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-sctp.c b/epan/dissectors/packet-sctp.c index c641c24f3b..b884517830 100644 --- a/epan/dissectors/packet-sctp.c +++ b/epan/dissectors/packet-sctp.c @@ -2757,7 +2757,7 @@ dissect_data_chunk(tvbuff_t *chunk_tvb, */ if (b_bit) { - gboolean retval = FALSE; + volatile gboolean retval = FALSE; /* * If this particular fragment happens to get a ReportedBoundsError |