aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-icmp.h
diff options
context:
space:
mode:
authorChris Maynard <Christopher.Maynard@GTECH.COM>2012-05-03 01:48:59 +0000
committerChris Maynard <Christopher.Maynard@GTECH.COM>2012-05-03 01:48:59 +0000
commit2eeb504807d4d3e5200b4f076c98dc7f6f494b3e (patch)
treeb9e0b9645dd2e4a1e3bbe82dfa39db35f893cd3a /epan/dissectors/packet-icmp.h
parent8f557d0874e832a1c9906bea0a930f264968cc48 (diff)
From Klaus Heckelmann via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7221: Avoid wireshark crash on platforms where an 8 byte alignment is required by changing the resp_time field in the icmp_transaction_t from a double to an nstime_t.
svn path=/trunk/; revision=42393
Diffstat (limited to 'epan/dissectors/packet-icmp.h')
-rw-r--r--epan/dissectors/packet-icmp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-icmp.h b/epan/dissectors/packet-icmp.h
index df671169ba..57882a8db0 100644
--- a/epan/dissectors/packet-icmp.h
+++ b/epan/dissectors/packet-icmp.h
@@ -30,7 +30,7 @@ typedef struct _icmp_transaction_t {
guint32 rqst_frame;
guint32 resp_frame;
nstime_t rqst_time;
- double resp_time;
+ nstime_t resp_time;
} icmp_transaction_t;
#endif