Evan Huus
changed
bug 9276
Comment # 1
on bug 9276
from Evan Huus
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.