diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2017-04-03 14:50:05 -0400 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-04-03 19:15:09 +0000 |
commit | 7e7c649237b9d537226e3026aa9b5831862eee5b (patch) | |
tree | a905847ec19b45c45e54e50ae527d2acbefa7f97 /core/fxcodec/codec/ccodec_pngmodule.cpp | |
parent | 044a70da2aeaa5f4c73abfb75e81f79edd9014b8 (diff) | |
download | pdfium-7e7c649237b9d537226e3026aa9b5831862eee5b.tar.xz |
Drop FXSYS_ from string methods
This Cl drops the FXSYS_ from string methods which are the same on
all platforms.
Bug: pdfium:694
Change-Id: I1698aafd84f40474997549ae91ce35603377e303
Reviewed-on: https://pdfium-review.googlesource.com/3597
Commit-Queue: dsinclair <dsinclair@chromium.org>
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'core/fxcodec/codec/ccodec_pngmodule.cpp')
-rw-r--r-- | core/fxcodec/codec/ccodec_pngmodule.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/core/fxcodec/codec/ccodec_pngmodule.cpp b/core/fxcodec/codec/ccodec_pngmodule.cpp index 4bd4cfce93..2b8f95799e 100644 --- a/core/fxcodec/codec/ccodec_pngmodule.cpp +++ b/core/fxcodec/codec/ccodec_pngmodule.cpp @@ -19,8 +19,7 @@ extern "C" { static void _png_error_data(png_structp png_ptr, png_const_charp error_msg) { if (png_get_error_ptr(png_ptr)) { - FXSYS_strncpy((char*)png_get_error_ptr(png_ptr), error_msg, - PNG_ERROR_SIZE - 1); + strncpy((char*)png_get_error_ptr(png_ptr), error_msg, PNG_ERROR_SIZE - 1); } longjmp(png_jmpbuf(png_ptr), 1); } @@ -252,7 +251,7 @@ bool CCodec_PngModule::Input(FXPNG_Context* ctx, CFX_DIBAttribute* pAttribute) { if (setjmp(png_jmpbuf(ctx->png_ptr))) { if (pAttribute && - 0 == FXSYS_strcmp(m_szLastError, "Read Header Callback Error")) { + 0 == strcmp(m_szLastError, "Read Header Callback Error")) { _png_load_bmp_attribute(ctx->png_ptr, ctx->info_ptr, pAttribute); } return false; |