ANNOUNCEMENT: Live Wireshark University & Allegro Packets online APAC Wireshark Training Session
July 17th, 2024 | 10:00am-11:55am SGT (UTC+8) | Online

Wireshark-bugs: [Wireshark-bugs] [Bug 12040] Print "Selected packets only" crashes application

Date: Mon, 29 Feb 2016 05:04:28 +0000

Comment # 10 on bug 12040 from
And, in fact, the code around line 265 of ui/qt/print_dialog.cpp is

    // cf_print_packets updates the progress bar which in turn calls
    // WiresharkApplication::processEvents(), which can make the preview trip
    // over itself.
    preview_->setUpdatesEnabled(false);
    cf_print_packets(cap_file_, &print_args_);
    preview_->setUpdatesEnabled(true);

so there appears to be an attempt to avoid updating the preview in an inner
event loop - but it appears to be an unsuccessful attempt.


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