Commit cb0ef088 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

ntdll: Suppress a warning on 'description' attribute of 'comClass'.

parent ff352171
......@@ -1510,6 +1510,10 @@ static BOOL parse_com_class_elem(xmlbuf_t* xmlbuf, struct dll_redirect* dll, str
{
entity->u.comclass.miscstatusdocprint = parse_com_class_misc(&attr_value);
}
else if (xmlstr_cmp(&attr_name, descriptionW))
{
/* not stored */
}
else
{
WARN("unknown attr %s=%s\n", debugstr_xmlstr(&attr_name), debugstr_xmlstr(&attr_value));
......
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