Jacek Caban (@jacek) commented about dlls/mshtml/dispex.c:
if(!ensure_real_info(This)) return E_OUTOFMEMORY;
- if(is_custom_dispid(id))
goto custom;
Please don't use goto like that, you may just move that if() a bit bellow and reverse the condition.