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

Alexandre Julliard julliard at winehq.org
Tue Oct 29 15:12:26 CDT 2013


Module: wine
Branch: master
Commit: cb0ef08839e515d7a9053923d27ef8899978a263
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=cb0ef08839e515d7a9053923d27ef8899978a263

Author: Nikolay Sivov <nsivov at codeweavers.com>
Date:   Tue Oct 29 21:35:30 2013 +0400

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

---

 dlls/ntdll/actctx.c |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/dlls/ntdll/actctx.c b/dlls/ntdll/actctx.c
index 73f82d9..bf6e47b 100644
--- a/dlls/ntdll/actctx.c
+++ b/dlls/ntdll/actctx.c
@@ -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));




More information about the wine-cvs mailing list