[Wireshark-dev] Dissector bug?

2011-02-28 Thread eymanm
I'm getting the following error message while running my dissector: [Dissector bug, protocol MP UDP: STATUS_ACCESS_VIOLATION: dissector accessed an invalid memory address] [Expert Info (Error/Malformed): STATUS_ACCESS_VIOLATION: dissector accessed an invalid memory address] [Message: S

Re: [Wireshark-dev] Dissector bug

2010-01-12 Thread Stephen Fisher
On Jan 8, 2010, at 3:43 PM, philippe alarcon wrote: > - it appears that in hf_oqtp[] you cannot use FT_STRING, and BASE_CUSTOM. > I have replaced BASE_CUSTOM by BASE_NONE which is dedicated to text. > But I cannot explain why BASE_CUSTOM cannot be used in this case. > (replaced in the attached ve

Re: [Wireshark-dev] Dissector bug

2010-01-09 Thread Maynard, Chris
shark.org on behalf of philippe alarcon Sent: Fri 1/8/2010 5:43 PM To: wireshark-dev Subject: Re: [Wireshark-dev] Dissector bug [snip] CONFIDENTIALITY NOTICE: The contents of this email are confidential and for the exclusive use of the intended recipient. If you receive this email in error,

Re: [Wireshark-dev] Dissector bug

2010-01-08 Thread Maynard, Chris
bject: Re: [Wireshark-dev] Dissector bug On Fri, Jan 08, 2010 at 11:39:04AM +0530, Rach, Darshan wrote: > I am getting the following error: > [Dissector bug, protocol DASH: proto.c:2457: failed assertion "(guint)hfindex < gpa_hfinfo.len"] > > My code looks like this: > &

Re: [Wireshark-dev] Dissector bug

2010-01-08 Thread Joerg Mayer
On Fri, Jan 08, 2010 at 11:39:04AM +0530, Rach, Darshan wrote: > I am getting the following error: > [Dissector bug, protocol DASH: proto.c:2457: failed assertion "(guint)hfindex > < gpa_hfinfo.len"] > > My code looks like this: > > static gint hf_epg_info_bits_len = -1; > > {&hf_epg_info_bits_

Re: [Wireshark-dev] Dissector bug

2010-01-08 Thread Maynard, Chris
AM To: Developer support list for Wireshark Subject: Re: [Wireshark-dev] Dissector bug I am still unable to solve this issue. I get the error immediately after executing this piece of code: reserved = ((tvb_get_guint8(tvb, packet_field_offset) & 0xc0) >> 6); proto_tree_add_uint(oqtp_tr

Re: [Wireshark-dev] Dissector bug

2010-01-08 Thread Rach, Darshan
: Re: [Wireshark-dev] Dissector bug Hi, that usually means you forget to either: initialize a variable or didn't add it to the hf[] or ett[] array. Take a closer look there, Jan On 08.01.2010, at 07:09, Rach, Darshan wrote: Hi, I am getting the following error: [Dissector bug, protocol

Re: [Wireshark-dev] Dissector bug

2010-01-08 Thread Jan Gerbecks
Hi, that usually means you forget to either: initialize a variable or didn't add it to the hf[] or ett[] array. Take a closer look there, Jan On 08.01.2010, at 07:09, Rach, Darshan wrote: > Hi, > > I am getting the following error: > [Dissector bug, protocol DASH: proto.c:2457: failed asser

[Wireshark-dev] Dissector bug

2010-01-07 Thread Rach, Darshan
Hi, I am getting the following error: [Dissector bug, protocol DASH: proto.c:2457: failed assertion "(guint)hfindex < gpa_hfinfo.len"] My code looks like this: static gint hf_epg_info_bits_len = -1; {&hf_epg_info_bits_len, {"EPG Info Bits Length","oqtp.epg_info_bits_len",FT_UINT8, BASE_DEC,NUL

Re: [Wireshark-dev] dissector bug

2009-08-31 Thread Jaap Keuter
> While trying to add an item in the proto tree using the command > > proto_tree_add_item(xyz_tree, hf_xyz_event_stream_id, tvb, offset + 2, -1, > FALSE); > > I am getting the following error: > > [Dissector bug, protocol XYZ: proto.c:3009: failed assertion > "DISSECTOR_ASSERT_NOT_REACHED"] > > But

Re: [Wireshark-dev] dissector bug

2009-08-31 Thread didier
Hi, Le lundi 31 août 2009 à 12:15 +0530, Devlina a écrit : > > While trying to add an item in the proto tree using the command > > proto_tree_add_item(xyz_tree, hf_xyz_event_stream_id, tvb, offset + 2, > -1, FALSE); > > I am getting the following error: > > [Dissector bug, protocol XYZ: proto

[Wireshark-dev] dissector bug

2009-08-30 Thread Devlina
While trying to add an item in the proto tree using the command proto_tree_add_item(xyz_tree, hf_xyz_event_stream_id, tvb, offset + 2, -1, FALSE); I am getting the following error: [Dissector bug, protocol XYZ: proto.c:3009: failed assertion "DISSECTOR_ASSERT_NOT_REACHED"] But strangely this is

Re: [Wireshark-dev] Dissector bug ... failed assertion

2009-07-14 Thread Guy Harris
On Jul 14, 2009, at 12:11 PM, Jeremy Duff wrote: > I've managed to reuse some of the code in epan/dissectors/packet- > fr.c that hands off information to the osinl so that I could make > epan/dissectors/lapd.c act the same way. Everything appears to be > working correctly, however, I'm getti

[Wireshark-dev] Dissector bug ... failed assertion

2009-07-14 Thread Jeremy Duff
I've managed to reuse some of the code in epan/dissectors/packet-fr.c that hands off information to the osinl so that I could make epan/dissectors/lapd.c act the same way. Everything appears to be working correctly, however, I'm getting this bug and can't figure out why: [Dissector bug, protocol L

Re: [Wireshark-dev] Dissector bug, protocol CPFI

2007-12-17 Thread Stephen Fisher
On Mon, Dec 17, 2007 at 05:42:21PM +0100, Andries E. Brouwer wrote: > Wireshark version: 0.99.6. > > Message: > 17:25:48 Warn Dissector bug, protocol CPFI, in packet 1: > packet-cpfi.c:196: failed assertion "pinfo->src.type == AT_ETHER" > > Cause: this particular packet has pinfo->sr

[Wireshark-dev] Dissector bug, protocol CPFI

2007-12-17 Thread Andries E. Brouwer
Wireshark version: 0.99.6. Message: 17:25:48 Warn Dissector bug, protocol CPFI, in packet 1: packet-cpfi.c:196: failed assertion "pinfo->src.type == AT_ETHER" Cause: this particular packet has pinfo->src.type == 2 (AT_IPv4) instead of 1 (AT_ETHER). OS: Linux (various distros, various k

[Wireshark-dev] Dissector bug, protocol SNMP: STATUS_INTEGER_DIVIDE_BY_ZERO: dissector tried an integer division by zero

2007-03-27 Thread nag b
Hi All I am using wire-shark latest windows version 0.99.5 . I wants to decode SNMPV3 PDU captured as *.cap file, to decrypt this PDU I am providing USMuserTable file from Edit -> preferences -> protocol -> SNMP. Though I am providing correct keys to decrypt SNMPV3 PDU, I am seeing error "Disse