aboutsummaryrefslogtreecommitdiffstats
path: root/ui/qt/wireshark_application.cpp
diff options
context:
space:
mode:
authorPascal Quantin <pascal.quantin@gmail.com>2015-10-05 11:27:54 +0200
committerPascal Quantin <pascal.quantin@gmail.com>2015-10-05 11:50:53 +0000
commit4fbfd3eca5f092a3319bfbd3cc07e6f0caf40a36 (patch)
tree0c101cb8f18b63ae5baaab149cc3aebb279f2453 /ui/qt/wireshark_application.cpp
parentfc5bc45257fc53e4fffa865e89825576decd9c55 (diff)
Qt: fix uninitialized members (UNINIT_CTOR) reported by Coverity (CID 1228882)
Change-Id: I1f09fa9a8421e702d2fff963afc899617f2e6222 Reviewed-on: https://code.wireshark.org/review/10794 Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
Diffstat (limited to 'ui/qt/wireshark_application.cpp')
-rw-r--r--ui/qt/wireshark_application.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/ui/qt/wireshark_application.cpp b/ui/qt/wireshark_application.cpp
index 3607ced737..1a206400e8 100644
--- a/ui/qt/wireshark_application.cpp
+++ b/ui/qt/wireshark_application.cpp
@@ -482,7 +482,8 @@ WiresharkApplication::WiresharkApplication(int &argc, char **argv) :
QApplication(argc, argv),
initialized_(false),
is_reloading_lua_(false),
- active_captures_(0)
+ active_captures_(0),
+ if_notifier_(NULL)
{
wsApp = this;
setApplicationName("Wireshark");