[PATCH 2/3] windowscodecs: Return stub IEnumString from mqw_GetEnumerator().

Paul Gofman pgofman at codeweavers.com
Wed Nov 24 06:04:15 CST 2021


Signed-off-by: Paul Gofman <pgofman at codeweavers.com>
---
 dlls/windowscodecs/metadataquery.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/windowscodecs/metadataquery.c b/dlls/windowscodecs/metadataquery.c
index 7ef2c10cf07..ed80d26d54f 100644
--- a/dlls/windowscodecs/metadataquery.c
+++ b/dlls/windowscodecs/metadataquery.c
@@ -819,9 +819,9 @@ static HRESULT WINAPI mqw_GetContainerFormat(IWICMetadataQueryWriter *iface, GUI
 
 static HRESULT WINAPI mqw_GetEnumerator(IWICMetadataQueryWriter *iface, IEnumString **enum_string)
 {
-    FIXME("iface %p, enum_string %p stub.\n", iface, enum_string);
+    TRACE("iface %p, enum_string %p.\n", iface, enum_string);
 
-    return E_NOTIMPL;
+    return string_enumerator_create(enum_string);
 }
 
 static HRESULT WINAPI mqw_GetLocation(IWICMetadataQueryWriter *iface, UINT max_length, WCHAR *namespace, UINT *actual_length)
-- 
2.33.1




More information about the wine-devel mailing list