From 53894390dba2ec571bab75157ebe60d11171ed07 Mon Sep 17 00:00:00 2001 From: Tom Sepez Date: Mon, 9 Apr 2018 18:30:24 +0000 Subject: Use pdfium::span<> in CFX_BitStream, CPDF_SimpleParser. Get bounds checks in parsers automatically when using spans. Change-Id: I71fbe7b838435d455376db2f89817d807a9cdcfd Reviewed-on: https://pdfium-review.googlesource.com/29830 Commit-Queue: Tom Sepez Reviewed-by: dsinclair --- core/fxcrt/cfx_bitstream.cpp | 6 +++--- core/fxcrt/cfx_bitstream.h | 3 ++- 2 files changed, 5 insertions(+), 4 deletions(-) (limited to 'core/fxcrt') diff --git a/core/fxcrt/cfx_bitstream.cpp b/core/fxcrt/cfx_bitstream.cpp index 7cf6d36adf..114b5a9d2a 100644 --- a/core/fxcrt/cfx_bitstream.cpp +++ b/core/fxcrt/cfx_bitstream.cpp @@ -10,9 +10,9 @@ #include "core/fxcrt/fx_system.h" -CFX_BitStream::CFX_BitStream(const uint8_t* pData, uint32_t dwSize) - : m_BitPos(0), m_BitSize(dwSize * 8), m_pData(pData) { - ASSERT(dwSize <= std::numeric_limits::max() / 8); +CFX_BitStream::CFX_BitStream(pdfium::span pData) + : m_BitPos(0), m_BitSize(pData.size() * 8), m_pData(pData.data()) { + ASSERT(pData.size() <= std::numeric_limits::max() / 8); } CFX_BitStream::~CFX_BitStream() {} diff --git a/core/fxcrt/cfx_bitstream.h b/core/fxcrt/cfx_bitstream.h index 168760ddd8..baa2a9f544 100644 --- a/core/fxcrt/cfx_bitstream.h +++ b/core/fxcrt/cfx_bitstream.h @@ -10,10 +10,11 @@ #include #include "core/fxcrt/unowned_ptr.h" +#include "third_party/base/span.h" class CFX_BitStream { public: - CFX_BitStream(const uint8_t* pData, uint32_t dwSize); + explicit CFX_BitStream(pdfium::span pData); ~CFX_BitStream(); void ByteAlign(); -- cgit v1.2.3