Index: core/src/fxcrt/fx_basic_maps.cpp |
diff --git a/core/src/fxcrt/fx_basic_maps.cpp b/core/src/fxcrt/fx_basic_maps.cpp |
index 8ae44ce6a0f68a2923525190c31545515e7cb439..7fca42acde20fd24318ca4eb514ed472ecb32e72 100644 |
--- a/core/src/fxcrt/fx_basic_maps.cpp |
+++ b/core/src/fxcrt/fx_basic_maps.cpp |
@@ -413,9 +413,7 @@ static void _CompactStringStore(_CompactString* pCompact, FX_LPCBYTE pStr, int l |
pCompact->m_LenHigh = len / 256; |
pCompact->m_LenLow = len % 256; |
pCompact->m_pBuffer = FX_Alloc(FX_BYTE, len); |
- if (pCompact->m_pBuffer) { |
- FXSYS_memcpy32(pCompact->m_pBuffer, pStr, len); |
- } |
+ FXSYS_memcpy32(pCompact->m_pBuffer, pStr, len); |
} |
static CFX_ByteStringC _CompactStringGet(_CompactString* pCompact) |
{ |