mirror of
https://github.com/anope/anope.git
synced 2026-07-02 19:43:13 +02:00
# BUILD : 1.7.14 (1028) # BUGS : 499 # NOTES : fixed index of backtrace(), thx craig
git-svn-id: svn://svn.anope.org/anope/trunk@1028 31f1291d-b8d6-0310-a050-a5561fc1590b git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@752 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
parent
77c8e1b767
commit
b4de451c19
@@ -4,7 +4,7 @@ Provided by Anope Dev. <dev@anope.org> - 2006
|
||||
04/08 F Fixed Charybdis support on win32. [#487]
|
||||
04/08 F Fixed thread stuff on windows. [#488]
|
||||
04/08 F Fixed SGLine stuff on inspircd (not supported). [#489]
|
||||
|
||||
04/20 F Fixed index of backtrace(). [#499]
|
||||
|
||||
Anope Version 1.7.14
|
||||
--------------------
|
||||
|
||||
+1
-1
@@ -640,7 +640,7 @@ void do_backtrace(int show_segheader)
|
||||
version_build, version_flags);
|
||||
size = backtrace(array, 10);
|
||||
strings = backtrace_symbols(array, size);
|
||||
for (i = 1; i < size; i++) {
|
||||
for (i = 0; i < size; i++) {
|
||||
alog("Backtrace(%d): %s", i, strings[i]);
|
||||
}
|
||||
free(strings);
|
||||
|
||||
+5
-1
@@ -9,10 +9,14 @@ VERSION_MAJOR="1"
|
||||
VERSION_MINOR="7"
|
||||
VERSION_PATCH="14"
|
||||
VERSION_EXTRA=""
|
||||
VERSION_BUILD="1027"
|
||||
VERSION_BUILD="1028"
|
||||
|
||||
# $Log$
|
||||
#
|
||||
# BUILD : 1.7.14 (1028)
|
||||
# BUGS : 499
|
||||
# NOTES : fixed index of backtrace(), thx craig
|
||||
#
|
||||
# BUILD : 1.7.14 (1027)
|
||||
# BUGS :
|
||||
# NOTES : removed threads.h
|
||||
|
||||
Reference in New Issue
Block a user