summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2014-12-21 22:50:32 +0100
committerMattes D <github@xoft.cz>2014-12-21 22:50:32 +0100
commitf5b4c92a10a6e196d9487083672e91fbe60a12fd (patch)
tree2486db7494f4757111158cd0f635c44443af583b
parentWSSAnvil: Added clamping to entity coords. (diff)
downloadcuberite-f5b4c92a10a6e196d9487083672e91fbe60a12fd.tar
cuberite-f5b4c92a10a6e196d9487083672e91fbe60a12fd.tar.gz
cuberite-f5b4c92a10a6e196d9487083672e91fbe60a12fd.tar.bz2
cuberite-f5b4c92a10a6e196d9487083672e91fbe60a12fd.tar.lz
cuberite-f5b4c92a10a6e196d9487083672e91fbe60a12fd.tar.xz
cuberite-f5b4c92a10a6e196d9487083672e91fbe60a12fd.tar.zst
cuberite-f5b4c92a10a6e196d9487083672e91fbe60a12fd.zip
-rw-r--r--Tools/MCADefrag/MCADefrag.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/MCADefrag/MCADefrag.cpp b/Tools/MCADefrag/MCADefrag.cpp
index d5d233fd2..0d38a87f1 100644
--- a/Tools/MCADefrag/MCADefrag.cpp
+++ b/Tools/MCADefrag/MCADefrag.cpp
@@ -269,7 +269,7 @@ bool cMCADefrag::cThread::ReadChunk(cFile & a_File, const Byte * a_LocationRaw)
return false;
}
m_CompressedChunkDataSize = (Buf[0] << 24) | (Buf[1] << 16) | (Buf[2] << 8) | Buf[3];
- if (m_CompressedChunkDataSize > SizeInSectors)
+ if ((m_CompressedChunkDataSize > SizeInSectors) || (m_CompressedChunkDataSize < 0))
{
LOGWARNING("Invalid chunk data - SizeInSectors (%d) smaller that RealSize (%d)", SizeInSectors, m_CompressedChunkDataSize);
return false;