diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-02-08 18:39:09 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-02-08 18:39:09 +0000 |
| commit | c30f9b2c7fc20e05e73b0d5ebf9dae9a1d87eeb9 (patch) | |
| tree | fd93b08f723ac33d38d7517da7e8f7e51798ace8 /src/wx/download_certificate_dialog.cc | |
| parent | 9d1fb717654dc38e9412d99bb84efdbced2e03ac (diff) | |
Fix a few warnings from Coverity; nothing dangerous, I don't think.
Diffstat (limited to 'src/wx/download_certificate_dialog.cc')
| -rw-r--r-- | src/wx/download_certificate_dialog.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/wx/download_certificate_dialog.cc b/src/wx/download_certificate_dialog.cc index abb1e6126..a8a712334 100644 --- a/src/wx/download_certificate_dialog.cc +++ b/src/wx/download_certificate_dialog.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2014 Carl Hetherington <cth@carlh.net> + Copyright (C) 2014-2015 Carl Hetherington <cth@carlh.net> This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -26,6 +26,8 @@ using boost::function; DownloadCertificateDialog::DownloadCertificateDialog (wxWindow* parent, function<void (boost::filesystem::path)> load) : TableDialog (parent, _("Download certificate"), 2, true) , _load (load) + , _message (0) + , _download (0) { } |
