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

Date: Thu, 11 Oct 2012 19:14:30 GMT
http://anonsvn.wireshark.org/viewvc/viewvc.cgi?view=rev&revision=45476

User: wmeier
Date: 2012/10/11 12:14 PM

Log:
 Change 'for (i=1; i<=n;...' to 'for (i=0; i<n; ...)'.
 
 The changes fix possibly problematical cases
  (not clear upon quick inspection).
 
 Also: fix several bugs wherein an inner 'for' loop used
 the same index variable name as an outer loop thus
 messing up the outerloop.
 
 ##backport

Directory: /trunk/epan/dissectors/
  Changes    Path             Action
  +341 -339  packet-ndps.c    Modified