summaryrefslogtreecommitdiff
path: root/ui/qt/endpoint_dialog.cpp
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2015-07-29 10:36:46 -0700
committerGerald Combs <gerald@wireshark.org>2015-07-29 20:45:48 +0000
commita03a43bd320ceeaae9f2dfa2f15213dced579d17 (patch)
treed3e718a58db275b87193fff9d0b4909d31bab0f5 /ui/qt/endpoint_dialog.cpp
parent5b856134f66f96d1073dd95df9c213cc41869706 (diff)
downloadwireshark-a03a43bd320ceeaae9f2dfa2f15213dced579d17.tar.gz
Capture file retapping fixups.
Add CaptureFile::delayedRetapPackets, which starts retapping after the current batch of UI event are processed. Call it in the constructors of various dialogs so that they are shown before tapping starts. This *might* fix a crash found when following large streams from the Conversations dialog. Change-Id: If1b87491621ab7efcc0519f95891d34dcd9d18c1 Reviewed-on: https://code.wireshark.org/review/9818 Petri-Dish: Gerald Combs <gerald@wireshark.org> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Gerald Combs <gerald@wireshark.org>
Diffstat (limited to 'ui/qt/endpoint_dialog.cpp')
-rw-r--r--ui/qt/endpoint_dialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/qt/endpoint_dialog.cpp b/ui/qt/endpoint_dialog.cpp
index db3cce634f..d00341b827 100644
--- a/ui/qt/endpoint_dialog.cpp
+++ b/ui/qt/endpoint_dialog.cpp
@@ -85,7 +85,7 @@ EndpointDialog::EndpointDialog(QWidget &parent, CaptureFile &cf, int cli_proto_i
#endif
itemSelectionChanged();
- cap_file_.retapPackets();
+ cap_file_.delayedRetapPackets();
}
EndpointDialog::~EndpointDialog()