diff options
author | Ryan Harrison <rharrison@chromium.org> | 2017-09-27 11:07:51 -0400 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-09-27 16:18:11 +0000 |
commit | 8b1408e7053247def45659515cda19a64a7fccd5 (patch) | |
tree | f3dfb5ebd24fb4993c6b915917b97250b3739555 /core/fxcrt/widestring.h | |
parent | bacf75eeeb5d89fe60b2c77584350ca1b1432bd5 (diff) | |
download | pdfium-8b1408e7053247def45659515cda19a64a7fccd5.tar.xz |
Remove FXSYS_strlen and FXSYS_wcslenchromium/3226
With the conversion of internal string sizes to size_t, these wrappers
are no longer needed. Replacing them with strlen and wcslen
respectively.
BUG=pdfium:828
Change-Id: Ia087ca2ddaf688a57ec9bd9ddfb8533cbe41510d
Reviewed-on: https://pdfium-review.googlesource.com/14890
Commit-Queue: Ryan Harrison <rharrison@chromium.org>
Reviewed-by: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'core/fxcrt/widestring.h')
-rw-r--r-- | core/fxcrt/widestring.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/fxcrt/widestring.h b/core/fxcrt/widestring.h index 73846e1be0..745fa5b2ab 100644 --- a/core/fxcrt/widestring.h +++ b/core/fxcrt/widestring.h @@ -91,7 +91,7 @@ class WideString { size_t GetLength() const { return m_pData ? m_pData->m_nDataLength : 0; } size_t GetStringLength() const { - return m_pData ? FXSYS_wcslen(m_pData->m_String) : 0; + return m_pData ? wcslen(m_pData->m_String) : 0; } bool IsEmpty() const { return !GetLength(); } bool IsValidIndex(size_t index) const { return index < GetLength(); } |