r9010 - in packages/branches/wesnoth/experimental/debian: . patches

Gerfried Fuchs alfie at alioth.debian.org
Mon Mar 2 14:39:32 UTC 2009


Author: alfie
Date: 2009-03-02 14:39:31 +0000 (Mon, 02 Mar 2009)
New Revision: 9010

Removed:
   packages/branches/wesnoth/experimental/debian/patches/03fix-server-dos
Modified:
   packages/branches/wesnoth/experimental/debian/changelog
   packages/branches/wesnoth/experimental/debian/patches/series
Log:
  - removed patch fix-server-dos as it is part of the release.

Modified: packages/branches/wesnoth/experimental/debian/changelog
===================================================================
--- packages/branches/wesnoth/experimental/debian/changelog	2009-03-02 13:42:01 UTC (rev 9009)
+++ packages/branches/wesnoth/experimental/debian/changelog	2009-03-02 14:39:31 UTC (rev 9010)
@@ -3,6 +3,7 @@
   * First RC for upcoming 1.6 release! Contains fix for:
     - save game cached informations didn't update (closes: #483782)
     - fixed reproducible pathfinder crash (closes: #510403)
+    - removed patch fix-server-dos as it is part of the release.
   * Install new wmlflip tool into wesnoth-tools package.
 
  -- Gerfried Fuchs <rhonda at debian.at>  Mon, 02 Mar 2009 14:39:20 +0100

Deleted: packages/branches/wesnoth/experimental/debian/patches/03fix-server-dos
===================================================================
--- packages/branches/wesnoth/experimental/debian/patches/03fix-server-dos	2009-03-02 13:42:01 UTC (rev 9009)
+++ packages/branches/wesnoth/experimental/debian/patches/03fix-server-dos	2009-03-02 14:39:31 UTC (rev 9010)
@@ -1,19 +0,0 @@
-Author: dave	vim:ft=diff:
-Description: fixed DoS attack using z compressed WML on server
-	(upstream svn r33069)
-
-Index: wesnoth-1.5.11/src/server/simple_wml.cpp
-===================================================================
---- wesnoth-1.5.11.orig/src/server/simple_wml.cpp
-+++ wesnoth-1.5.11/src/server/simple_wml.cpp
-@@ -28,6 +28,10 @@ char* uncompress_buffer(const string_spa
- 	int len = 0;
- 	int pos = 0;
- 	while(filter.good() && (len = filter.read(&buf[pos], chunk_size).gcount()) == chunk_size) {
-+		if(pos + chunk_size > 40000000) {
-+			throw error("WML document exceeds 40MB limit");
-+		}
-+
- 		pos += len;
- 		buf.resize(pos + chunk_size);
- 		len = 0;

Modified: packages/branches/wesnoth/experimental/debian/patches/series
===================================================================
--- packages/branches/wesnoth/experimental/debian/patches/series	2009-03-02 13:42:01 UTC (rev 9009)
+++ packages/branches/wesnoth/experimental/debian/patches/series	2009-03-02 14:39:31 UTC (rev 9010)
@@ -1,2 +1 @@
 02wesnoth-nolog-desktop-file
-03fix-server-dos




More information about the Pkg-games-commits mailing list