4 Jul
2024
4 Jul
'24
10:01 a.m.
Rémi Bernon (@rbernon) commented about dlls/windows.web/tests/web.c:
hr = IActivationFactory_QueryInterface( factory, &IID_IJsonValueStatics, (void **)&json_value_statics ); ok( hr == S_OK, "got hr %#lx.\n", hr );
+ hr = IJsonValueStatics_CreateStringValue( json_value_statics, NULL, (IJsonValue **)&json_value ); + todo_wine + ok( hr == S_OK, "got hr %#lx.\n", hr );
```suggestion:-0+0 ok( hr == S_OK, "got hr %#lx.\n", hr ); if (hr == S_OK) IJsonValue_Release( json_value ); ``` -- https://gitlab.winehq.org/wine/wine/-/merge_requests/5992#note_75112