Sophie

Sophie

distrib > Mageia > 8 > aarch64 > by-pkgid > 0d7a82c9e194e855f6e8e8733bb10a78 > files > 3

armagetron-0.2.8.3.4-3.mga8.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 ) );