http://bugs.winehq.org/show_bug.cgi?id=12973
--- Comment #14 from Kirill K. Smirnov lich@math.spbu.ru 2008-06-03 08:49:28 --- A little more inverstigation resulted in:
qip causes fault right after it calls DispatchEx_DeleteMemberByName function. Let's see.
static HRESULT WINAPI DispatchEx_DeleteMemberByName(IDispatchEx *iface, BSTR bstrName, DWORD grfdex) { DispatchEx *This = DISPATCHEX_THIS(iface); FIXME("(%p)->(%s %x)\n", This, debugstr_w(bstrName), grfdex); return E_NOTIMPL; }
If I change retval from E_NOTIMPL to S_OK qip does not crash. So it seems qip does not check return values correctly - buggy app? What is strange that is qip passes empty line as bstrName. Or it is some kind of magic value?