ANNOUNCEMENT: Live Wireshark University & Allegro Packets online APAC Wireshark Training Session
April 17th, 2024 | 14:30-16:00 SGT (UTC+8) | Online

Wireshark-commits: [Wireshark-commits] rev 29319: /trunk/epan/dissectors/ /trunk/epan/dissectors/:

Date: Thu, 06 Aug 2009 23:47:22 GMT
http://anonsvn.wireshark.org/viewvc/viewvc.cgi?view=rev&revision=29319

User: wmeier
Date: 2009/08/06 04:47 PM

Log:
 'if (curr_len <= 0)' won't work as desired when curr_len is declared as unsigned.
 The fix: change to 'if ((signed)curr_len <= 0)'.
 This is a bit of a hack but I think it works.
 See the comment in this file (packet-gsm_a_common.h).

Directory: /trunk/epan/dissectors/
  Changes    Path                     Action
  +28 -20    packet-gsm_a_common.h    Modified