Commit c5ab9d01 authored by Zebediah Figura's avatar Zebediah Figura Committed by Alexandre Julliard

widl: Use type_iface_get_inherit() in check_async_uuid().

parent b4fe4ccc
...@@ -2807,7 +2807,7 @@ static void check_async_uuid(type_t *iface) ...@@ -2807,7 +2807,7 @@ static void check_async_uuid(type_t *iface)
if (!is_attr(iface->attrs, ATTR_ASYNCUUID)) return; if (!is_attr(iface->attrs, ATTR_ASYNCUUID)) return;
inherit = iface->details.iface->inherit; inherit = type_iface_get_inherit(iface);
if (inherit && strcmp(inherit->name, "IUnknown")) if (inherit && strcmp(inherit->name, "IUnknown"))
inherit = type_iface_get_async_iface(inherit); inherit = type_iface_get_async_iface(inherit);
if (!inherit) if (!inherit)
......
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