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 30715: /trunk-1.0/ /trunk-1.0/epan/dissectors/: packet-d

Date: Mon, 26 Oct 2009 18:39:53 GMT
http://anonsvn.wireshark.org/viewvc/viewvc.cgi?view=rev&revision=30715

User: gerald
Date: 2009/10/26 11:39 AM

Log:
 Copy over r30208 from the trunk:
 
 ------------------------------------------------------------------------
 r30208 | sahlberg | 2009-09-30 00:53:12 -0700 (Wed, 30 Sep 2009) | 28 lines
 Changed paths:
    M /trunk/epan/dissectors/packet-dcerpc-nt.c
 
 The dcerpc dissectors used to walk the list of items upward parent by 
 parent in order to push teh display of extra interesting fields in the 
 packet to higher up in the decode tree. This was useful for making sure 
 that things like DomainNames etc are clearly visible without having to 
 drill down 500 layers of NDR.
 
 This code used to just blindly walk the indicated number of parents, and 
 then attach the string to that item.
 This relied on the "unsafe" assumption that the topmost item would have 
 pointer point to itself, so this was "safe".
 
 This is no longer safe since the root object in the tree now has NULL as 
 parent, and thus some of these dcerpc interfaces can now cause a SEGV 
 trying to dereference NULL->parent.
 
 I added a macro to safely walk to the parent object, or remain at the 
 current object if parent is NULL.
 
 This was a serious bug, where dcerpc traffic could cause a SEGV.
 Please merge into all stable versions.
 ------------------------------------------------------------------------
 
 Update the release notes and changelog.

Directory: /trunk-1.0/epan/dissectors/
  Changes    Path                  Action
  +20 -13    packet-dcerpc-nt.c    Modified

Directory: /trunk-1.0/docbook/
  Changes    Path                 Action
  +23 -11    release-notes.xml    Modified

Directory: /trunk-1.0/
  Changes    Path          Action
  +39 -477   ChangeLog     Modified