[Webkit-unassigned] [Bug 24510] New: Plugin Package function pointers are set up wrong

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Mar 11 03:54:02 PDT 2009


https://bugs.webkit.org/show_bug.cgi?id=24510

           Summary: Plugin Package function pointers are set up wrong
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: Macintosh
        OS/Version: Mac OS X 10.5
            Status: UNCONFIRMED
          Severity: Normal
          Priority: P2
         Component: Plug-ins
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: mihnea at adobe.com


Hello,

In file PluginPackageMac.cpp, function load, two function pointers are set in
wrong way:

m_browserFuncs.hasproperty = _NPN_HasMethod; 
m_browserFuncs.hasmethod = _NPN_HasProperty;

The right way to set them should be:
m_browserFuncs.hasproperty = _NPN_HasProperty; 
m_browserFuncs.hasmethod = _NPN_HasMethod;

Also, the same problem can be found in PluginPackageGtk.cpp and
PluginPackageQt.cpp.

Regards,
Mihnea


-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.



More information about the webkit-unassigned mailing list