ANNOUNCEMENT: Live Wireshark University & Allegro Packets online APAC Wireshark Training Session
April 17th, 2024 | 14:30-16:00 SGT (UTC+8) | Online

Wireshark-bugs: [Wireshark-bugs] [Bug 9276] Buildbot crash output: fuzz-2013-10-16-32089.pcap

Date: Wed, 16 Oct 2013 20:47:30 +0000

changed bug 9276

What Removed Added
CC   [email protected]

Comment # 1 on bug 9276 from
Regression from r52615. In epan/oids.c lines 946-956, If !is_first and n==0
then ep_alloc returns nothing writable, but we try to write to it on line 954.

I think the correct thing is probably just not to write to it if n==0, so

if is_first and n==1 {
    *subids = 0
    return n
}
else if !is_first and n==0 {
    return n
}

but I'm not able to compile or commit right now, so if somebody else can verify
this fix feel free to check it in.


You are receiving this mail because:
  • You are watching all bug changes.