Commit 09250068 authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

dwrite: Don't fail in opentype_get_font_strings_from_id if any of font strings got decoded.

parent e98cdc32
......@@ -1586,8 +1586,10 @@ static HRESULT opentype_get_font_strings_from_id(const void *table_data, enum OP
continue;
}
if (!(exists = opentype_decode_namerecord(header, storage_area, i, *strings)))
if (!opentype_decode_namerecord(header, storage_area, i, *strings))
continue;
exists = TRUE;
}
if (!exists) {
......
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