summaryrefslogtreecommitdiff
path: root/core/src/fxcrt/fx_basic_bstring.cpp
diff options
context:
space:
mode:
authorTom Sepez <tsepez@chromium.org>2015-04-27 15:10:00 -0700
committerTom Sepez <tsepez@chromium.org>2015-04-27 15:10:00 -0700
commit00948f58ae4ba3713e2e25080c9e229ecbe929eb (patch)
tree6f62b5280dd1755d8b52c775484b20cbe22fd7d5 /core/src/fxcrt/fx_basic_bstring.cpp
parentee7412f5aef353e5c6f1a64d0e1708ed926869d9 (diff)
downloadpdfium-00948f58ae4ba3713e2e25080c9e229ecbe929eb.tar.xz
Revert "Make CFX_WideString::LockBuffer() completely unused."
This reverts commit ee7412f5aef353e5c6f1a64d0e1708ed926869d9. Reason for revert: VS compile broke. TBR=thestig@chromium.org Review URL: https://codereview.chromium.org/1106333003
Diffstat (limited to 'core/src/fxcrt/fx_basic_bstring.cpp')
-rw-r--r--core/src/fxcrt/fx_basic_bstring.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/core/src/fxcrt/fx_basic_bstring.cpp b/core/src/fxcrt/fx_basic_bstring.cpp
index 961aebe69c..cda7d1fdd7 100644
--- a/core/src/fxcrt/fx_basic_bstring.cpp
+++ b/core/src/fxcrt/fx_basic_bstring.cpp
@@ -341,6 +341,15 @@ 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);