8157653: [Parfait] Uninitialised variable in awt_Font.cpp

Reviewed-by: serb, ssadetsky
This commit is contained in:
Phil Race 2016-06-30 11:56:27 -07:00
parent 3be6827c7c
commit bb951288f4

View File

@ -640,7 +640,7 @@ SIZE AwtFont::TextSize(AwtFont* font, int columns, int rows)
int AwtFont::getFontDescriptorNumber(JNIEnv *env, jobject font,
jobject fontDescriptor)
{
int i, num;
int i, num = 0;
jobject refFontDescriptor;
jobjectArray array;