[Bug 35827] New: Corel PaintShop Pro X6 v16.2 installer crashes on startup ('text/jscript' type not recognized when converting to script GUID)

wine-bugs at winehq.org wine-bugs at winehq.org
Thu Mar 20 15:17:07 CDT 2014


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 at winehq.org
          Reporter: focht at 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/5cdb4a273eefaa3c77e41e2875d7a759e8892d10:/dlls/mshtml/script.c#l815

--- 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

-- 
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.



More information about the wine-bugs mailing list