diff options
author | Lei Zhang <thestig@chromium.org> | 2017-11-22 20:04:12 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-11-22 20:04:12 +0000 |
commit | fe2cd4d914205f2da91286e7270209e2016d51a1 (patch) | |
tree | 50c8f98c7daf38df965f83e29a382fd95434195d /fxjs | |
parent | d328d91f9e7a49f0d79048a7d10be9ba17ad9cb2 (diff) | |
download | pdfium-fe2cd4d914205f2da91286e7270209e2016d51a1.tar.xz |
Remove some pointless assignments to "".
Or change them to clear().
Change-Id: Ia9e3e1f0d74b948cec3f8df85d205f830ac9216c
Reviewed-on: https://pdfium-review.googlesource.com/19172
Reviewed-by: dsinclair <dsinclair@chromium.org>
Commit-Queue: Lei Zhang <thestig@chromium.org>
Diffstat (limited to 'fxjs')
-rw-r--r-- | fxjs/cjs_global.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fxjs/cjs_global.cpp b/fxjs/cjs_global.cpp index 0fef8d5334..db63a4b8b9 100644 --- a/fxjs/cjs_global.cpp +++ b/fxjs/cjs_global.cpp @@ -555,7 +555,7 @@ CJS_Return JSGlobalAlternate::SetGlobalVariables(const ByteString& propname, if (pTemp->bDeleted || pTemp->nType != nType) { pTemp->dData = 0; pTemp->bData = 0; - pTemp->sData = ""; + pTemp->sData.clear(); pTemp->nType = nType; } pTemp->bDeleted = false; |