Browse Source

Fix crash on opening torrent/magnet (uninitialized pointer). Closes #7739 #7723.

adaptive-webui-19844
sledgehammer999 7 years ago
parent
commit
236abcf3f1
No known key found for this signature in database
GPG Key ID: 6E4A2D025B7CC9A2
  1. 1
      src/app/application.cpp

1
src/app/application.cpp

@ -105,6 +105,7 @@ Application::Application(const QString &id, int &argc, char **argv) @@ -105,6 +105,7 @@ Application::Application(const QString &id, int &argc, char **argv)
, m_running(false)
, m_shutdownAct(ShutdownDialogAction::Exit)
, m_commandLineArgs(parseCommandLine(this->arguments()))
, m_webui(nullptr)
{
qRegisterMetaType<Log::Msg>("Log::Msg");

Loading…
Cancel
Save