summaryrefslogtreecommitdiff
path: root/asn1/c1222
AgeCommit message (Collapse)AuthorFilesLines
2012-09-20We always HAVE_CONFIG_H so don't bother checking whether we have it or not.Jeff Morriss1-3/+1
svn path=/trunk/; revision=45015
2012-07-13tvb_length_remaining() can return -1, so don't assign its return value to an ↵Chris Maynard1-52/+52
unsigned integer. Fixes Coverity CID 281367: Improper use of negative value. svn path=/trunk/; revision=43698
2012-07-08UATs could be put into "categories". The categories were defined onlyGuy Harris1-1/+1
implicitly by the #define name and string they were defined to; not all UATs neatly fit into any of the categories, so some of them were put into categories that weren't obviously correct for them, and one - the display filter macro UAT - wasn't put into any category at all (which caused crashes when editing them, as the GUI code that handled UAT changes from a dialog assumed the category field was non-null). The category was, in practice, used only to decide, in the aforementioned GUI code, whether the packet summary pane needed to be updated or not. It also offered no option of "don't update the packet summary pane *and* don't redissect anything", which is what would be appropriate for the display filter macro UAT. Replace the category with a set of fields indicating what the UAT affects; we currently offer "dissection", which applies to most UATs (any UAT in libwireshark presumably affects dissection at a minimum) and "the set of named fields that exist". Changing any UAT that affects dissection requires a redissection; changing any UAT that affects the set of named fields that exist requires a redissection *and* rebuilding the packet summary pane. Perhaps we also need "filtering", so that if you change a display filter macro, we re-filter, in case the display is currently filtered with a display filter that uses a macro that changed. svn path=/trunk/; revision=43603
2012-06-28Update Free Software Foundation address.Jakub Zawadzki5-5/+5
(COPYING will be updated in next commit) svn path=/trunk/; revision=43536
2012-05-25tvb_length_remaining() can return a negative number, so be sure to handle ↵Chris Maynard1-0/+4
it. Fixes Coverity CID 281367. svn path=/trunk/; revision=42840
2012-05-11Get rid of remaining Booleans-as-encoding-arguments inGuy Harris1-1/+1
proto_tree_add_bitmask() calls. svn path=/trunk/; revision=42568
2012-05-07Get rid of remaining Booleans-as-encoding-arguments inGuy Harris1-1/+1
proto_tree_add_item() calls. svn path=/trunk/; revision=42477
2012-03-11Use _U_ for unused arguments.Stig Bjørlykke1-6/+6
svn path=/trunk/; revision=41478
2012-03-02Fix some Dead Store (Dead assignement/Dead increment) Warning found by ClangAlexis La Goutte1-3/+3
svn path=/trunk/; revision=41299
2012-01-15The warning fix overdid things: It removed functionality.Jörg Mayer1-4/+1
Now I only remove the variable ft and everything looks good. svn path=/trunk/; revision=40516
2012-01-15Accidentally checked in Makefile.inJörg Mayer1-635/+0
svn path=/trunk/; revision=40510
2012-01-14commit 40500 missed the asn1 directoryJörg Mayer8-0/+2283
svn path=/trunk/; revision=40501