Index: core/src/fpdfapi/fpdf_edit/fpdf_edit_image.cpp |
diff --git a/core/src/fpdfapi/fpdf_edit/fpdf_edit_image.cpp b/core/src/fpdfapi/fpdf_edit/fpdf_edit_image.cpp |
index 2fbecad3510deeacff89ef791723742f3ca62ca2..dad7326a5b2fa9c4f825165ec08ea1a478c258a2 100644 |
--- a/core/src/fpdfapi/fpdf_edit/fpdf_edit_image.cpp |
+++ b/core/src/fpdfapi/fpdf_edit/fpdf_edit_image.cpp |
@@ -12,7 +12,11 @@ |
#include "../fpdf_render/render_int.h" |
CPDF_Dictionary* CPDF_Image::InitJPEG(uint8_t* pData, FX_DWORD size) |
{ |
- int32_t width, height, color_trans, num_comps, bits; |
+ int32_t width; |
+ int32_t height; |
+ int32_t num_comps; |
+ int32_t bits; |
+ FX_BOOL color_trans; |
if (!CPDF_ModuleMgr::Get()->GetJpegModule()-> |
LoadInfo(pData, size, width, height, num_comps, bits, color_trans)) { |
return NULL; |