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

mshtml: Fixed IOmNavigator::get_platform for win64 platform.

parent a2ac4d23
......@@ -251,11 +251,15 @@ static HRESULT WINAPI OmNavigator_get_platform(IOmNavigator *iface, BSTR *p)
{
OmNavigator *This = OMNAVIGATOR_THIS(iface);
static const WCHAR win32W[] = {'W','i','n','3','2',0};
#ifdef _WIN64
static const WCHAR platformW[] = {'W','i','n','6','4',0};
#else
static const WCHAR platformW[] = {'W','i','n','3','2',0};
#endif
TRACE("(%p)->(%p)\n", This, p);
*p = SysAllocString(win32W);
*p = SysAllocString(platformW);
return S_OK;
}
......
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