summaryrefslogtreecommitdiff
path: root/core/src/fxcrt/fx_basic_bstring.cpp
diff options
context:
space:
mode:
authorTom Sepez <tsepez@chromium.org>2015-04-28 14:36:02 -0700
committerTom Sepez <tsepez@chromium.org>2015-04-28 14:36:02 -0700
commit134eb282dfaf1e3903979d397db6433966837687 (patch)
tree9c5c3624d0823fb44579be3561bd5d5fd281816a /core/src/fxcrt/fx_basic_bstring.cpp
parent551a0fd73570a0292e7b017f764b70c4afde873a (diff)
downloadpdfium-134eb282dfaf1e3903979d397db6433966837687.tar.xz
Merge to XFA: Make CFX_WideString::LockBuffer() completely unused.
Original Review URL: https://codereview.chromium.org/1053613004 TBR=thestig@chromium.org Review URL: https://codereview.chromium.org/1115493002
Diffstat (limited to 'core/src/fxcrt/fx_basic_bstring.cpp')
-rw-r--r--core/src/fxcrt/fx_basic_bstring.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/core/src/fxcrt/fx_basic_bstring.cpp b/core/src/fxcrt/fx_basic_bstring.cpp
index cda7d1fdd7..961aebe69c 100644
--- a/core/src/fxcrt/fx_basic_bstring.cpp
+++ b/core/src/fxcrt/fx_basic_bstring.cpp
@@ -341,15 +341,6 @@ void CFX_ByteString::ReleaseBuffer(FX_STRSIZE nNewLength)
m_pData->m_nDataLength = nNewLength;
m_pData->m_String[nNewLength] = 0;
}
-FX_LPSTR CFX_ByteString::LockBuffer()
-{
- if (m_pData == NULL) {
- return NULL;
- }
- FX_LPSTR lpsz = GetBuffer(0);
- m_pData->m_nRefs = -1;
- return lpsz;
-}
void CFX_ByteString::Reserve(FX_STRSIZE len)
{
GetBuffer(len);