Sophie

Sophie

distrib > Mageia > 9 > armv7hl > media > core-release-src > by-pkgid > 5aa122c8e2dd91f0947ba23b40609b94 > files > 3

armagetron-0.2.8.3.4-4.mga9.src.rpm

# Description: Fix empty master.srv creation, which cause segfaults when starting network games
# Forwaded: yes : https://sourceforge.net/tracker/?func=detail&aid=3207635&group_id=110997&atid=657950
# Bug: none
# Author: Christiaan Welvaart (spturtle)
Index: src/network/nServerInfo.cpp
===================================================================
--- a/src/network/nServerInfo.cpp
+++ b/src/network/nServerInfo.cpp	2011-03-12 12:01:33.725306330 +0100
@@ -1487,7 +1487,7 @@
     if (!masterInfo)
         return;
 
-    DeleteAll();
+    DeleteAll(false);
 
     // load all the servers we know
     Load( tDirectories::Var(), MasterFile( fileSuffix ) );