Index: core/fpdfapi/fpdf_page/cpdf_page.cpp |
diff --git a/core/fpdfapi/fpdf_page/cpdf_page.cpp b/core/fpdfapi/fpdf_page/cpdf_page.cpp |
index 0da5452969a6be64a638da4012bd04d95ea38c1f..2c01cd5573aeb69e5cf7a8f5265a6b7f1fbde1b3 100644 |
--- a/core/fpdfapi/fpdf_page/cpdf_page.cpp |
+++ b/core/fpdfapi/fpdf_page/cpdf_page.cpp |
@@ -140,7 +140,12 @@ void CPDF_Page::GetDisplayMatrix(CFX_Matrix& matrix, |
return; |
} |
CFX_Matrix display_matrix; |
- int x0, y0, x1, y1, x2, y2; |
+ int x0 = 0; |
+ int y0 = 0; |
+ int x1 = 0; |
+ int y1 = 0; |
+ int x2 = 0; |
+ int y2 = 0; |
iRotate %= 4; |
switch (iRotate) { |
case 0: |