Changeset 87968 in webkit


Ignore:
Timestamp:
Jun 2, 2011 5:28:10 PM (13 years ago)
Author:
andersca@apple.com
Message:

2011-06-02 Anders Carlsson <andersca@apple.com>

Reviewed by Mark Rowe.

Assert when trying to unload a module that failed to load
https://bugs.webkit.org/show_bug.cgi?id=61980

Remove an invalid ASSERT; it's OK for m_bundle to be null if the bundle failed to load.

  • Platform/mac/ModuleMac.mm: (WebKit::Module::unload):
Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r87945 r87968  
     12011-06-02  Anders Carlsson  <andersca@apple.com>
     2
     3        Reviewed by Mark Rowe.
     4
     5        Assert when trying to unload a module that failed to load
     6        https://bugs.webkit.org/show_bug.cgi?id=61980
     7
     8        Remove an invalid ASSERT; it's OK for m_bundle to be null if the bundle failed to load.
     9
     10        * Platform/mac/ModuleMac.mm:
     11        (WebKit::Module::unload):
     12
    1132011-06-02  Anders Carlsson  <andersca@apple.com>
    214
  • trunk/Source/WebKit2/Platform/mac/ModuleMac.mm

    r81617 r87968  
    4949void Module::unload()
    5050{
    51     ASSERT(m_bundle);
     51    if (!m_bundle)
     52        return;
    5253
    5354#if !defined(__LP64__)
Note: See TracChangeset for help on using the changeset viewer.