Wireshark-commits: [Wireshark-commits] master 32e1ff9: Don't put bitmasks under an FT_NONE.
From: Wireshark code review <code-review-do-not-reply@xxxxxxxxxxxxx>
Date: Mon, 8 Dec 2014 23:37:01 +0000 (UTC)
URL: https://code.wireshark.org/review/gitweb?p=wireshark.git;a=commit;h=32e1ff9bf35fe1990536130e104f9f49ef65981b
Submitter: Guy Harris (guy@xxxxxxxxxxxx)
Changed: branch: master
Repository: wireshark

Commits:

32e1ff9 by Guy Harris (guy@xxxxxxxxxxxx):

    Don't put bitmasks under an FT_NONE.
    
    proto_tree_add_bitmask() requires that the field under which it's
    putting the bitmasks be an FT_INTn or FT_UINTn, so that it can determine
    the length of the field.
    
    Arguably, proto_tree_add_bitmask() should, instead, take a length
    argument, just as other proto_tree_add_ routines do, and, arguably, we
    should perhaps not even have FT_UINTn and FT_INTn, just FT_UINT and
    FT_INT, with the display width for hex and octal (leading zeroes)
    determined by the actual length of the field or something such as that,
    or as part of the field that also contains the base.
    
    But, even with that, we might want to require an FT_UINTn or FT_INTn
    anyway, at least in cases where the value of the field as a whole is
    interesting.
    
    Change-Id: I4dff8fb1686a30b7d145c089dd1be7f96ecf23e0
    Reviewed-on: https://code.wireshark.org/review/5680
    Reviewed-by: Guy Harris <guy@xxxxxxxxxxxx>
    

Actions performed:

    from  ffcacae   Have different MTP2 dissectors for different metadata and CRC.
    adds  32e1ff9   Don't put bitmasks under an FT_NONE.


Summary of changes:
 epan/dissectors/packet-dvmrp.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)