Browse Source

Added qBittorrent version to the debug stack trace

adaptive-webui-19844
Christophe Dumez 14 years ago
parent
commit
c4968edb79
  1. 2
      src/main.cpp

2
src/main.cpp

@ -131,6 +131,7 @@ void sigsegvHandler(int) { @@ -131,6 +131,7 @@ void sigsegvHandler(int) {
signal(SIGSEGV, 0);
std::cerr << "\n\n*************************************************************\n";
std::cerr << "Catching SIGSEGV, please report a bug at http://bug.qbittorrent.org\nand provide the following backtrace:\n";
std::cerr << "qBittorrent version: " << VERSION << std::endl;
print_stacktrace();
raise(SIGSEGV);
}
@ -139,6 +140,7 @@ void sigabrtHandler(int) { @@ -139,6 +140,7 @@ void sigabrtHandler(int) {
signal(SIGSEGV, 0);
std::cerr << "\n\n*************************************************************\n";
std::cerr << "Catching SIGABRT, please report a bug at http://bug.qbittorrent.org\nand provide the following backtrace:\n";
std::cerr << "qBittorrent version: " << VERSION << std::endl;
print_stacktrace();
raise(SIGABRT);
}

Loading…
Cancel
Save