summaryrefslogtreecommitdiff
path: root/pdfium.gyp
diff options
context:
space:
mode:
authorweili <weili@chromium.org>2016-08-11 19:43:58 -0700
committerCommit bot <commit-bot@chromium.org>2016-08-11 19:43:58 -0700
commit229d05df5bc5deb3890b26b614113c25d9b6935e (patch)
tree1491fa61aab052ac7784ef90c8a7b60368daac27 /pdfium.gyp
parent2736276deff3abef9d6b226eb9f585abe1384591 (diff)
downloadpdfium-229d05df5bc5deb3890b26b614113c25d9b6935e.tar.xz
Fix an integer overflow in CStretchEngine constructor
When the source bitmap's width and height are large, the multiplication could easily overflow a signed integer. Change to use 'long long' type for calculation to avoid that. BUG=chromium:635663 Review-Url: https://codereview.chromium.org/2240723002
Diffstat (limited to 'pdfium.gyp')
-rw-r--r--pdfium.gyp1
1 files changed, 1 insertions, 0 deletions
diff --git a/pdfium.gyp b/pdfium.gyp
index 1cc8758bd9..f04ce42d4f 100644
--- a/pdfium.gyp
+++ b/pdfium.gyp
@@ -949,6 +949,7 @@
'core/fxcrt/fx_bidi_unittest.cpp',
'core/fxcrt/fx_extension_unittest.cpp',
'core/fxcrt/fx_system_unittest.cpp',
+ 'core/fxge/dib/fx_dib_engine_unittest.cpp',
'fpdfsdk/fpdfdoc_unittest.cpp',
'fpdfsdk/fpdfeditimg_unittest.cpp',
'testing/fx_string_testhelpers.h',