From 0c61a738d2a8bef13c8fbe08c6df0b27238960ab Mon Sep 17 00:00:00 2001 From: JUN FANG Date: Tue, 10 Feb 2015 08:13:01 -0800 Subject: Fix uninitialized value in CFX_ByteString::FormatInteger BUG=449845 R=tsepez@chromium.org Review URL: https://codereview.chromium.org/911293002 --- core/include/fxcrt/fx_coordinates.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core/include/fxcrt/fx_coordinates.h') 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) { -- cgit v1.2.3