summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorrburchell <rburchell@5417fbe8-f217-4b02-8779-1006273d7864>2009-02-09 21:35:04 +0000
committerrburchell <rburchell@5417fbe8-f217-4b02-8779-1006273d7864>2009-02-09 21:35:04 +0000
commite7228b6289b9ebb2f9efb73e2fdd352af7190a91 (patch)
tree445a5905d199ca068b59ed536250887849a92ed2 /src
parent72b86bcf7229f1e8904a87c180944e7be7f42533 (diff)
Remove gone do_backtrace() prototype and call from memory.c
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1957 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src')
-rw-r--r--src/memory.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/memory.c b/src/memory.c
index 804961f95..ca7dca59a 100644
--- a/src/memory.c
+++ b/src/memory.c
@@ -101,8 +101,7 @@ char *sstrdup(const char *src)
strcpy(ret, src);
} else {
alog("sstrdup() called with NULL-arg");
- if (debug)
- do_backtrace(0);
+ abort();
}
return ret;