Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1888)

Unified Diff: core/include/fxcrt/fx_coordinates.h

Issue 911293002: Fix uninitialized value in CFX_ByteString::FormatInteger (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« core/include/fpdfapi/fpdf_objects.h ('K') | « core/include/fpdfapi/fpdf_objects.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: core/include/fxcrt/fx_coordinates.h
diff --git a/core/include/fxcrt/fx_coordinates.h b/core/include/fxcrt/fx_coordinates.h
index 6ec3b5e1ebb2fd69fb1ecf05f5508f69fe4a1c79..15d3a642e862a97a5c51f84a9912c021243253fa 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)
{
« core/include/fpdfapi/fpdf_objects.h ('K') | « core/include/fpdfapi/fpdf_objects.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698