summaryrefslogtreecommitdiff
path: root/core/include/fxcrt/fx_coordinates.h
diff options
context:
space:
mode:
authorJUN FANG <jun_fang@foxitsoftware.com>2015-02-10 08:13:01 -0800
committerJUN FANG <jun_fang@foxitsoftware.com>2015-02-10 08:13:01 -0800
commit0c61a738d2a8bef13c8fbe08c6df0b27238960ab (patch)
tree4c3afe4f2f5f2b662621b684b2c72ee4c59bd0c3 /core/include/fxcrt/fx_coordinates.h
parent994bffe804eb3e2b5af11d0526b278078ab5efcb (diff)
downloadpdfium-chromium/2302.tar.xz
Fix uninitialized value in CFX_ByteString::FormatIntegerchromium/2304chromium/2303chromium/2302
BUG=449845 R=tsepez@chromium.org Review URL: https://codereview.chromium.org/911293002
Diffstat (limited to 'core/include/fxcrt/fx_coordinates.h')
-rw-r--r--core/include/fxcrt/fx_coordinates.h2
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)
{