Commit fab4d1fd authored by Alexandre Julliard's avatar Alexandre Julliard

gdiplus: Initialize a variable to avoid a spurious compiler warning.

parent d2beb725
......@@ -1396,7 +1396,7 @@ static WCHAR *load_ttf_name_id( const BYTE *mem, DWORD_PTR size, DWORD id )
const tt_header *header;
const tt_name_table *name_table;
const tt_name_record *name_record;
DWORD pos, ofs, count;
DWORD pos, ofs = 0, count;
int i, res, best_lang = 0, best_index = -1;
if (sizeof(tt_header) > size)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment