Commit bb60430d authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

mshtml: Always return fake scheme in nsIURI::GetScheme if use_wine_url is set.

parent 050a1372
......@@ -1506,7 +1506,7 @@ static nsresult NSAPI nsURI_GetScheme(nsIWineURI *iface, nsACString *aScheme)
TRACE("(%p)->(%p)\n", This, aScheme);
if(This->use_wine_url && strcmpW(This->wine_url, about_blankW)) {
if(This->use_wine_url) {
/*
* For Gecko we set scheme to unknown so it won't be handled
* as any special case.
......
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