Comment # 5
on bug 9048
from Joe McEachern
I tried the suggested patch, but this actually produces an assertion for me.
joe@cooley:~/lab2/wireshark-1.10-trunk$ svn diff tshark.c
Index: tshark.c
===================================================================
--- tshark.c (revision 51438)
+++ tshark.c (working copy)
@@ -2708,6 +2708,8 @@
/* Run the read filter if we have one. */
if (cf->rfcode)
passed = dfilter_apply_edt(cf->rfcode, &edt);
+ if (passed && cf->dfcode)
+ passed = dfilter_apply_edt(cf->dfcode, &edt);
}
if (passed) {
joe@cooley:~/lab2/wireshark-1.10-trunk$ ./tshark -r dns.cap -2 -c 1 -Y
"frame.number>10"
**
ERROR:dfvm.c:432:dfvm_apply: assertion failed: (tree)
Aborted
You are receiving this mail because:
- You are watching all bug changes.