1
0
mirror of https://github.com/anope/anope.git synced 2026-07-09 22:03:12 +02:00

BUILD : 1.7.21 (1364) BUGS : 844 NOTES : Removed broken version checking for windows media center edition and tablet edition; free(Jobe);

git-svn-id: svn://svn.anope.org/anope/trunk@1364 31f1291d-b8d6-0310-a050-a5561fc1590b


git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1079 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b
2008-01-26 13:29:02 +00:00
parent ba7e2d8440
commit 395f3edacc
3 changed files with 6 additions and 9 deletions
+1
View File
@@ -16,6 +16,7 @@ Anope Version S V N
01/26 F Memory leak in ChanServ LIST. [#840]
01/26 F Memory leaks in HostServ SETALL. [#841]
01/26 F Memory leak in ChanServ AKICK. [#842]
01/26 F Removed broken detection of Windows MCE/Tablet edition. [#845]
Provided by Jan Milants <jan_renee@msn.com> - 2008
01/16 F Server traversion with next_server() failed to list all servers. [#831]
-8
View File
@@ -1405,14 +1405,6 @@ char *GetWindowsVersion(void)
extra = sstrdup("Embedded");
} else if (osvi.wSuiteMask & VER_SUITE_PERSONAL) {
extra = sstrdup("Home Edition");
#ifdef SM_MEDIACENTER
} else if (GetSystemMetrics(SM_MEDIACENTER)) {
extra = sstrdup("Media Center Edition");
#endif
#ifdef SM_TABLETPC
} else if (GetSystemMetrics(SM_TABLETPC)) {
extra = sstrdup("Tablet Edition");
#endif
} else {
extra = sstrdup(" ");
}
+5 -1
View File
@@ -9,10 +9,14 @@ VERSION_MAJOR="1"
VERSION_MINOR="7"
VERSION_PATCH="21"
VERSION_EXTRA="-svn"
VERSION_BUILD="1363"
VERSION_BUILD="1364"
# $Log$
#
# BUILD : 1.7.21 (1364)
# BUGS : 844
# NOTES : Removed broken version checking for windows media center edition and tablet edition; free(Jobe);
#
# BUILD : 1.7.21 (1363)
# BUGS : 842
# NOTES : Fixed yet another memory leak; it wass cs_akick this time