diff options
author | Jun Fang <jun_fang@foxitsoftware.com> | 2015-12-31 23:36:21 +0800 |
---|---|---|
committer | Jun Fang <jun_fang@foxitsoftware.com> | 2015-12-31 23:36:21 +0800 |
commit | e67f618a7c31c1746cba590482e59d5a8849ff73 (patch) | |
tree | 86d7c5ee9f2540aa2a2bcbaa42c777d8aff9a860 | |
parent | 84f6a5616be0a1988d361a4b54eb83fff8b8c59f (diff) | |
download | pdfium-e67f618a7c31c1746cba590482e59d5a8849ff73.tar.xz |
Fix a corpus test failure introduced by commit 84f6a56
BUG=pdfium:336
TBR=thestig@chromium.org
Review URL: https://codereview.chromium.org/1554773004 .
-rw-r--r-- | samples/pdfium_test.cc | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/samples/pdfium_test.cc b/samples/pdfium_test.cc index 89430f6dfd..3bc279842d 100644 --- a/samples/pdfium_test.cc +++ b/samples/pdfium_test.cc @@ -338,17 +338,15 @@ bool RenderPage(const std::string& name, const int page_index, const Options& options) { FPDF_PAGE page = FPDF_LoadPage(doc, page_index); - if (!page) { + if (!page) return false; - } FPDF_TEXTPAGE text_page = FPDFText_LoadPage(page); FORM_OnAfterLoadPage(page, form); FORM_DoPageAAction(page, form, FPDFPAGE_AACTION_OPEN); double scale = 1.0; - if (!options.scale_factor_as_string.empty()) { + if (!options.scale_factor_as_string.empty()) std::stringstream(options.scale_factor_as_string) >> scale; - } int width = static_cast<int>(FPDF_GetPageWidth(page) * scale); int height = static_cast<int>(FPDF_GetPageHeight(page) * scale); int alpha = FPDFPage_HasTransparency(page) ? 1 : 0; |