Re: [Wireshark-dev] [Wireshark-commits] rev 45462: /trunk/epan/dissectors/ /trunk/epan/dissectors/: packet-sctp.c

2012-10-11 Thread Bill Meier
On 10/11/2012 1:27 AM, Guy Harris wrote: Actually, this one: for(sid_number = 1; sid_number = number_of_sids; sid_number++) { proto_tree_add_item(parameter_tree, hf_stream_reset_sid, parameter_tvb, sid_offset, SID_LENGTH, ENC_BIG_ENDIAN); sid_offset += SID_LENGTH; }

Re: [Wireshark-dev] r45266: proto_tree_add_uint_format_value(..., value, ..., value + 1)

2012-10-11 Thread Pascal Quantin
2012/10/11 Mike Morrin morrinm...@gmail.com On 11/10/2012 06:26, Pascal Quantin wrote: Le 11/10/2012 05:10, mman...@netscape.net a écrit : Pascal, Did you settle on the value, value+1? I think I have the exact same problem in bug 7728

[Wireshark-dev] Crash in trunk today whenever I open a subtree

2012-10-11 Thread Martin Mathieson
Things were running well yesterday after the emem.c changes, but today I can't open up any protocol trees. When I do, I always get the stack trace below. Martin wireshark:13250): GLib-GObject-CRITICAL **: g_object_get_data: assertion `G_IS_OBJECT (object)' failed **

Re: [Wireshark-dev] Crash in trunk today whenever I open a subtree

2012-10-11 Thread Jakub Zawadzki
On Thu, Oct 11, 2012 at 09:05:34AM -0400, Martin Mathieson wrote: Things were running well yesterday after the emem.c changes Have you tried to recompile wireshark with make clean (or even better with make distclean)? ___

[Wireshark-dev] I need help with Capture Filter

2012-10-11 Thread Chuck H Wilson
As the subject line states: I need help getting WireShark's capture filter to work. I have put together details of the problem(s) I'm having, but in keeping with the request of keeping the E-mail file size small, and not sending more information that would be useful for now, I'm just providing

Re: [Wireshark-dev] [Wireshark-commits] rev 45472: /trunk/ /trunk/epan/dissectors/: Makefile.common packet-coseventcomm.c packet-cosnaming.c packet-parlay.c packet-tango.c /trunk/epan/: CMakeLists.txt

2012-10-11 Thread Jeff Morriss
mm...@wireshark.org wrote: http://anonsvn.wireshark.org/viewvc/viewvc.cgi?view=revrevision=45472 User: mmann Date: 2012/10/11 07:42 AM Log: Make idl2wrs dissectors filterable - Part 1 Updated wireshark_gen.py to generate hf_ variables for all of the IDL types. The simple types use

[Wireshark-dev] RFD: Limiting scope of ep_ memory

2012-10-11 Thread Jakub Zawadzki
Hi, Right now ep_ memory is freed at the begining of epan_dissect_run(), which means that pointers allocated by ep_ can be safety accessed only before dissecting next packet. When using GUI epan_dissect_run() can be run when refreshing interface (think: packet list). Which can happen at *any*

Re: [Wireshark-dev] RFD: Limiting scope of ep_ memory

2012-10-11 Thread Evan Huus
On Thu, Oct 11, 2012 at 4:41 PM, Jakub Zawadzki darkjames...@darkjames.pl wrote: Hi, Right now ep_ memory is freed at the begining of epan_dissect_run(), which means that pointers allocated by ep_ can be safety accessed only before dissecting next packet. When using GUI epan_dissect_run()