From 80a6cbe0a427e155de8555bc867af745d10f9777 Mon Sep 17 00:00:00 2001 From: Tom Sepez Date: Thu, 12 Apr 2018 19:45:45 +0000 Subject: Return pdfium::span from ByteString::GetBuffer(). Get bounds checking "for free". Change-Id: I7b14cacbc7130ced7b5cb1869b82c96ccff8e642 Reviewed-on: https://pdfium-review.googlesource.com/30451 Commit-Queue: Tom Sepez Reviewed-by: dsinclair --- fxjs/cjs_publicmethods.cpp | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'fxjs/cjs_publicmethods.cpp') diff --git a/fxjs/cjs_publicmethods.cpp b/fxjs/cjs_publicmethods.cpp index 375eb6fd88..8dc69c4a00 100644 --- a/fxjs/cjs_publicmethods.cpp +++ b/fxjs/cjs_publicmethods.cpp @@ -10,6 +10,7 @@ #include #include #include +#include #include #include #include @@ -1094,10 +1095,12 @@ CJS_Return CJS_PublicMethods::AFPercent_Format( if (iDec2 < 0) { ByteString zeros; - char* zeros_ptr = zeros.GetBuffer(abs(iDec2)); - memset(zeros_ptr, '0', abs(iDec2)); + { + pdfium::span zeros_ptr = zeros.GetBuffer(abs(iDec2)); + std::fill(std::begin(zeros_ptr), std::end(zeros_ptr), '0'); + } + zeros.ReleaseBuffer(abs(iDec2)); strValue = zeros + strValue; - iDec2 = 0; } int iMax = strValue.GetLength(); -- cgit v1.2.3