Wireshark-bugs: [Wireshark-bugs] [Bug 11514] wireshark crashed when opening file with display fi

Date: Thu, 10 Sep 2015 12:05:48 +0000

Comment # 2 on bug 11514 from
Thanks for your quick check. I just downloaded the official version. The
officail wireshark version indeed doesn't have this crash issue.
I checked my personal code and below code modifications lead to crash. This
code  modification is used to resolve the blank info column after applying
filtering with Qt wireshark on some PCs.

offical version:
cf_status_t
cf_filter_packets(capture_file *cf, gchar *dftext, gboolean force)
{
  if (dftext == NULL) {
    rescan_packets(cf, "Resetting", "Filter", FALSE);
  } else {
    rescan_packets(cf, "Filtering", dftext, FALSE);
  }
}

my code modication:
cf_status_t
cf_filter_packets(capture_file *cf, gchar *dftext, gboolean force)
{
  if (dftext == NULL) {
    rescan_packets(cf, "Resetting", "Filter", TRUE);
  } else {
    rescan_packets(cf, "Filtering", dftext, TRUE);
  }
}


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