Index: core/src/fxcrt/fxcrt_platforms.cpp |
diff --git a/core/src/fxcrt/fxcrt_platforms.cpp b/core/src/fxcrt/fxcrt_platforms.cpp |
index cdf3d421f5099570cb7d6637a681a49bdb1ee939..0781ba436cb6245ce7a1185c3f55127660ba7665 100644 |
--- a/core/src/fxcrt/fxcrt_platforms.cpp |
+++ b/core/src/fxcrt/fxcrt_platforms.cpp |
@@ -169,9 +169,6 @@ FX_BOOL FX_File_Copy(FX_BSTR fileNameSrc, FX_BSTR fileNameDst) |
} |
FX_FILESIZE num = 0; |
FX_LPBYTE pBuffer = FX_Alloc(FX_BYTE, 32768); |
- if (!pBuffer) { |
- return FALSE; |
- } |
while (num = src.Read(pBuffer, 32768)) { |
if (dst.Write(pBuffer, num) != num) { |
break; |