summaryrefslogtreecommitdiff
path: root/zen/shutdown.cpp
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2019-04-15 12:34:36 +0000
committerB Stack <bgstack15@gmail.com>2019-04-15 12:34:36 +0000
commitbac0deab0f1b7ae8845514970284637f2e9faa68 (patch)
treef759fbac3eced54ff7ce3ac6fdd0c2ea6c2b053c /zen/shutdown.cpp
parentMerge branch '10.10' into 'master' (diff)
parentremove files deleted in upstream (diff)
downloadFreeFileSync-bac0deab0f1b7ae8845514970284637f2e9faa68.tar.gz
FreeFileSync-bac0deab0f1b7ae8845514970284637f2e9faa68.tar.bz2
FreeFileSync-bac0deab0f1b7ae8845514970284637f2e9faa68.zip
Merge branch '10.11' into 'master'10.11
10.11 Latest changes: * Last FreeFileSync version supporting Windows XP and Vista * Fixed crash on multi-monitor set * Fixed dialogs not showing after opening UAC prompt * Support launching through symlink (Linux) * Added example desktop starter files (Linux) * Fixed misleading error when determining file permissions support * Updated wxWidgets, libcurl, libssh2, VS, GCC, Xcode See merge request opensource-tracking/FreeFileSync!8
Diffstat (limited to 'zen/shutdown.cpp')
-rw-r--r--zen/shutdown.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/zen/shutdown.cpp b/zen/shutdown.cpp
index cd37d57c..aecd4121 100644
--- a/zen/shutdown.cpp
+++ b/zen/shutdown.cpp
@@ -36,7 +36,7 @@ void zen::terminateProcess(int exitCode)
std::exit(exitCode); //[[noreturn]]; "Stack is not unwound: destructors of variables with automatic storage duration are not called." => perfect
//don't use std::abort() => crashes process with "EXC_CRASH (SIGABRT)" on macOS
for (;;) //why still here?? => crash deliberately!
- *reinterpret_cast<volatile int*>(0) = 0; //crude but at least we'll get crash dumps if it happens
+ *reinterpret_cast<volatile int*>(0) = 0; //crude but at least we'll get crash dumps if it ever happens
}
bgstack15