diff options
-rw-r--r-- | Changes | 6 | ||||
-rw-r--r-- | src/main.c | 3 |
2 files changed, 8 insertions, 1 deletions
@@ -1,6 +1,12 @@ Anope Version 1.9.1 -------------------- + + + +Provided by Ankit <ankit@nevitus.com> - 2009 +F Segfault on shutdown + Provided by Adam <adam@anope.org> - 2009 F Applied patch from Adam to fix some potential screwups F More fixes to bs_bot from Adam, plus an extra fix within DoAdd not covered in Adam's patch. diff --git a/src/main.c b/src/main.c index 7c76674e8..9caa6b650 100644 --- a/src/main.c +++ b/src/main.c @@ -241,7 +241,8 @@ void sighandler(int signum) * always set when we need it. It seems some signals slip through to the * QUIT code without having a valid quitmsg. -GD */ - snprintf(const_cast<char *>(quitmsg), BUFSIZE, "Services terminating on signal %d", signum); + if (!quitmsg) + quitmsg = "Services terminating via a signal."; if (started) { |