18 Nov
2024
18 Nov
'24
8:04 p.m.
Jacek Caban (@jacek) commented about dlls/jscript/dispex.c:
{ jsdisp_t *This = impl_from_IWineJSDispatch(iface); jsdisp_free(This); - } +} + +static HRESULT WINAPI WineJSDispatch_GetPropFlags(IWineJSDispatch *iface, DISPID id, UINT32 *ret) +{ + jsdisp_t *This = impl_from_IWineJSDispatch(iface); + dispex_prop_t *prop = get_prop(This, id); + + if(!prop || prop->type == PROP_DELETED) I think that in this context `PROP_PROTREF` should be considered the same as delated.
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/6678#note_87879