Module: wine Branch: oldstable Commit: b296253f79fc41681e2964ec87039c77a69515f5 URL: https://source.winehq.org/git/wine.git/?a=commit;h=b296253f79fc41681e2964ec8...
Author: Hans Leidekker hans@codeweavers.com Date: Wed Oct 13 12:48:45 2021 +0200
wbemprox: Add __DERIVATION to the list of system properties.
Signed-off-by: Hans Leidekker hans@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org (cherry picked from commit 8b6565a61fe66ccd1472a4c78b3daf0e1897fba0) Signed-off-by: Michael Stefaniuc mstefani@winehq.org
---
dlls/wbemprox/query.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/dlls/wbemprox/query.c b/dlls/wbemprox/query.c index dc363475c71..ee05845158e 100644 --- a/dlls/wbemprox/query.c +++ b/dlls/wbemprox/query.c @@ -1390,7 +1390,8 @@ HRESULT put_propval( const struct view *view, UINT index, const WCHAR *name, VAR HRESULT get_properties( const struct view *view, UINT index, LONG flags, SAFEARRAY **props ) { static const WCHAR * const system_props[] = - { L"__GENUS", L"__CLASS", L"__RELPATH", L"__PROPERTY_COUNT", L"__SERVER", L"__NAMESPACE", L"__PATH" }; + { L"__GENUS", L"__CLASS", L"__RELPATH", L"__PROPERTY_COUNT", L"__DERIVATION", L"__SERVER", L"__NAMESPACE", + L"__PATH" }; SAFEARRAY *sa; BSTR str; UINT i, table_index, result_index, count = 0;