Closed
Bug 183289
Opened 22 years ago
Closed 22 years ago
[Plug-in for ActiveX] Switched parameter in XPconnect.cpp / xpc_GetCLSIDForType / keyMimeType.QueryValue
Categories
(Core Graveyard :: Plug-ins, defect)
Tracking
(Not tracked)
CLOSED
FIXED
People
(Reporter: bailliencourt, Assigned: adamlock)
References
()
Details
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.2.1) Gecko/20021130
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.2.1) Gecko/20021130
In XPconnect.cpp / xpc_GetCLSIDForType :
keyMimeType.QueryValue(_T("CLSID"), szGUID, &nCount)
Must be :
keyMimeType.QueryValue(szGUID, _T("CLSID"), &nCount)
Reproducible: Always
Steps to Reproduce:
1. Create an HTML page include a object tag defined by its type only, for
instance : <object TYPE="image/j2c"><param name="SRC"
value="http://www.morgan-multimedia.com/JPEG2000/test.jp2"></object>
2. Install Plug-in for ActiveX, npmozax.dll and Morgan JPEG2000 Plug-in for IE
(http://www.morgan-multimedia.com/JPEG2000/).
3. View this page with Mozilla.
Actual Results:
ActiveX control CLSID is not correctly resolved from MIMEType, so ActiveX
control is not loaded by Plug-in.
Expected Results:
ActiveX control CLSID should be correctly resolved from MIMEType and ActiveX
control should be loaded by Plug-in.
Reporter | ||
Comment 1•22 years ago
|
||
CC to adamlock@netscape.com
I can fold this 1-line change into the checkin for bug 179573
Reporter | ||
Comment 3•22 years ago
|
||
OK
Fix checked in with bug 179573
Status: UNCONFIRMED → RESOLVED
Closed: 22 years ago
Resolution: --- → FIXED
Updated•3 years ago
|
Product: Core → Core Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•