From bc218f9414bd6e4124eb223c7c69c5ac254befff Mon Sep 17 00:00:00 2001 From: Adam Ierymenko Date: Fri, 27 Jan 2017 13:52:29 -0800 Subject: [PATCH] little fix --- node/IncomingPacket.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node/IncomingPacket.cpp b/node/IncomingPacket.cpp index 1a60d13ac..28b845b40 100644 --- a/node/IncomingPacket.cpp +++ b/node/IncomingPacket.cpp @@ -437,7 +437,7 @@ bool IncomingPacket::_doOK(const RuntimeEnvironment *RR,const SharedPtr &p const unsigned int endOfWorlds = ptr + worldLen; while (ptr < endOfWorlds) { World w; - w.deserialize(*this,ptr); + ptr += w.deserialize(*this,ptr); RR->topology->addWorld(w,true); } }