diff options
author | JUN FANG <jun_fang@foxitsoftware.com> | 2015-02-10 08:13:01 -0800 |
---|---|---|
committer | JUN FANG <jun_fang@foxitsoftware.com> | 2015-02-10 08:58:20 -0800 |
commit | ea269b6973e381042102c7304bfdd19e9cd75349 (patch) | |
tree | 0341695a384170392be01d6dee091c0ae86ea7ba /core/include/fxcrt | |
parent | efe41083f4e42508bb44095cfd9dcccbf2c297d2 (diff) | |
download | pdfium-ea269b6973e381042102c7304bfdd19e9cd75349.tar.xz |
Merge to XFA: Fix uninitialized value in CFX_ByteString::FormatInteger
BUG=449845
R=tsepez@chromium.org
Review URL: https://codereview.chromium.org/911293002
Diffstat (limited to 'core/include/fxcrt')
-rw-r--r-- | core/include/fxcrt/fx_coordinates.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/include/fxcrt/fx_coordinates.h b/core/include/fxcrt/fx_coordinates.h index 6ec3b5e1eb..15d3a642e8 100644 --- a/core/include/fxcrt/fx_coordinates.h +++ b/core/include/fxcrt/fx_coordinates.h @@ -537,7 +537,7 @@ struct FX_RECT { int bottom; - FX_RECT() {} + FX_RECT(): left(0), top(0), right(0), bottom(0) { } FX_RECT(int left1, int top1, int right1, int bottom1) { |