Commit e2479126 authored by Gabriel Ivăncescu's avatar Gabriel Ivăncescu Committed by Alexandre Julliard

mshtml: Silence a FIXME when parameter is missing.

parent b60f9b73
......@@ -3243,7 +3243,7 @@ static HRESULT WINAPI window_private_postMessage(IWineHTMLWindowPrivate *iface,
TRACE("iface %p, msg %s, targetOrigin %s, transfer %s\n", iface, debugstr_variant(&msg),
debugstr_w(targetOrigin), debugstr_variant(&transfer));
if(V_VT(&transfer) != VT_EMPTY)
if(V_VT(&transfer) != VT_EMPTY && V_VT(&transfer) != VT_ERROR)
FIXME("transfer not implemented, ignoring\n");
hres = check_target_origin(window, targetOrigin);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment