https://bugs.winehq.org/show_bug.cgi?id=35827
Bug ID: 35827 Summary: Corel PaintShop Pro X6 v16.2 installer crashes on startup ('text/jscript' type not recognized when converting to script GUID) Product: Wine Version: 1.7.14 Hardware: x86 OS: Linux Status: NEW Severity: normal Priority: P2 Component: mshtml Assignee: wine-bugs@winehq.org Reporter: focht@gmx.net
Hello folks,
as the summary says ...
Might not be the real reason for the crash but still should be fixed anyway (the comment in the source indicates it).
--- snip --- ... fixme:mshtml:get_guid_from_type Unknown type L"text/jscript" ... --- snip ---
Source: http://source.winehq.org/git/wine.git/blob/5cdb4a273eefaa3c77e41e2875d7a759e...
--- snip --- 815 static BOOL get_guid_from_type(LPCWSTR type, GUID *guid) 816 { 817 const WCHAR text_javascriptW[] = 818 {'t','e','x','t','/','j','a','v','a','s','c','r','i','p','t',0}; 819 const WCHAR text_vbscriptW[] = 820 {'t','e','x','t','/','v','b','s','c','r','i','p','t',0}; 821 822 /* FIXME: Handle more types */ 823 if(!strcmpiW(type, text_javascriptW)) { 824 *guid = CLSID_JScript; 825 }else if(!strcmpiW(type, text_vbscriptW)) { 826 *guid = CLSID_VBScript; 827 }else { 828 FIXME("Unknown type %s\n", debugstr_w(type)); 829 return FALSE; 830 } 831 832 return TRUE; 833 } --- snip ---
$ wine --version wine-1.7.14-185-g5cf20ce
Regards