[Webkit-unassigned] [Bug 70947] New: SIGBUS in PluginDatabase readTime on sparc/solaris 10

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Oct 26 11:28:18 PDT 2011


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

           Summary: SIGBUS in PluginDatabase readTime on sparc/solaris 10
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: Other
        OS/Version: Other
            Status: UNCONFIRMED
          Severity: Normal
          Priority: P2
         Component: WebCore Misc.
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: bugs-webkit at vendor.thewrittenword.com


Crashes in Source/WebCore/plugins/PluginDatabase.cpp:511 -
    resultTime = *reinterpret_cast_ptr<time_t*>(start);

Because start is not aligned on a 32 bit boundary.

Using memcpy fixes this for us. i.e.
     memcpy(&resultTime,start,sizeof(time_t));

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



More information about the webkit-unassigned mailing list