Changeset 14068 in webkit


Ignore:
Timestamp:
Apr 25, 2006, 3:42:04 PM (19 years ago)
Author:
tomernic
Message:

Reviewed by Eric.

<rdar://problem/4526120> -[WebBasePluginPackage finalize] leaks the CFBundle (under GC only)

  • Plugins/WebBasePluginPackage.m: (-[WebBasePluginPackage finalize]): Release the CFBundle here.
Location:
trunk/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/ChangeLog

    r14060 r14068  
     12006-04-25  Tim Omernick  <timo@apple.com>
     2
     3        Reviewed by Eric.
     4
     5        <rdar://problem/4526120> -[WebBasePluginPackage finalize] leaks the CFBundle (under GC only)
     6
     7        * Plugins/WebBasePluginPackage.m:
     8        (-[WebBasePluginPackage finalize]):
     9        Release the CFBundle here.
     10
    1112006-04-25  Tim Omernick  <timo@apple.com>
    212
  • trunk/WebKit/Plugins/WebBasePluginPackage.m

    r14021 r14068  
    264264    ASSERT(!isLoaded);
    265265
     266    if (cfBundle)
     267        CFRelease(cfBundle);
     268
    266269    [super finalize];
    267270}
Note: See TracChangeset for help on using the changeset viewer.