From 6581175666ba4e1eb2826142376cbfe4495c6e76 Mon Sep 17 00:00:00 2001 From: Tom Sepez Date: Thu, 11 Jun 2015 12:17:45 -0700 Subject: Merge to XFA: Kill FXSYS_mem{cpy,cmp,set.move}{32,8}. Only manual merge was core/src/fpdfapi/fpdf_parser/fpdf_parser_objects.cpp follwed by scripts. Original Review URL: https://codereview.chromium.org/1179693003. TBR=thestig@chromium.org Review URL: https://codereview.chromium.org/1179953002. --- core/src/fxcodec/codec/codec_int.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'core/src/fxcodec/codec/codec_int.h') diff --git a/core/src/fxcodec/codec/codec_int.h b/core/src/fxcodec/codec/codec_int.h index 90e8b8c02c..7e3b2e12e0 100644 --- a/core/src/fxcodec/codec/codec_int.h +++ b/core/src/fxcodec/codec/codec_int.h @@ -164,7 +164,7 @@ class CCodec_PngModule : public ICodec_PngModule public: CCodec_PngModule() { - FXSYS_memset8(m_szLastError, '\0', PNG_ERROR_SIZE); + FXSYS_memset(m_szLastError, '\0', PNG_ERROR_SIZE); } virtual void* Start(void* pModule); @@ -178,7 +178,7 @@ class CCodec_GifModule : public ICodec_GifModule public: CCodec_GifModule() { - FXSYS_memset8(m_szLastError, '\0', 256); + FXSYS_memset(m_szLastError, '\0', 256); } virtual void* Start(void* pModule); virtual void Finish(void* pContext); @@ -200,7 +200,7 @@ class CCodec_BmpModule : public ICodec_BmpModule public: CCodec_BmpModule() { - FXSYS_memset8(m_szLastError, '\0', 256); + FXSYS_memset(m_szLastError, '\0', 256); } virtual void* Start(void* pModule); virtual void Finish(void* pContext); -- cgit v1.2.3