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

This commit is contained in:
Nikolay Sivov 2013-10-29 21:35:30 +04:00 committed by Alexandre Julliard
parent ff3521718d
commit cb0ef08839
1 changed files with 4 additions and 0 deletions

View File

@ -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));