summaryrefslogtreecommitdiffstats
path: root/src/Server.cpp
diff options
context:
space:
mode:
authormadmaxoft <github@xoft.cz>2014-01-07 16:00:19 +0100
committermadmaxoft <github@xoft.cz>2014-01-07 17:07:49 +0100
commit39a1bcdea0a5897a7090748529e3b903918882ec (patch)
treebc8e5421a6365b56746284b0eb2732e7a4fca333 /src/Server.cpp
parentLuaState can push strings with embedded NULs. (diff)
downloadcuberite-39a1bcdea0a5897a7090748529e3b903918882ec.tar
cuberite-39a1bcdea0a5897a7090748529e3b903918882ec.tar.gz
cuberite-39a1bcdea0a5897a7090748529e3b903918882ec.tar.bz2
cuberite-39a1bcdea0a5897a7090748529e3b903918882ec.tar.lz
cuberite-39a1bcdea0a5897a7090748529e3b903918882ec.tar.xz
cuberite-39a1bcdea0a5897a7090748529e3b903918882ec.tar.zst
cuberite-39a1bcdea0a5897a7090748529e3b903918882ec.zip
Diffstat (limited to 'src/Server.cpp')
-rw-r--r--src/Server.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Server.cpp b/src/Server.cpp
index 7dedc3904..e707235a8 100644
--- a/src/Server.cpp
+++ b/src/Server.cpp
@@ -493,7 +493,7 @@ void cServer::ExecuteConsoleCommand(const AString & a_Cmd, cCommandOutputCallbac
if (split[0].compare("killmem") == 0)
{
- while (true)
+ for (;;)
{
new char[100 * 1024 * 1024]; // Allocate and leak 100 MiB in a loop -> fill memory and kill MCS
}