Changeset 29032 in webkit


Ignore:
Timestamp:
Dec 29, 2007 4:33:20 PM (16 years ago)
Author:
Darin Adler
Message:

Reviewed by Oliver.

  • DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.cpp: (pluginInvoke): Added a missing free.
Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r28997 r29032  
     12007-12-29  Darin Adler  <darin@apple.com>
     2
     3        Reviewed by Oliver.
     4
     5        - fix http://bugs.webkit.org/show_bug.cgi?id=16663
     6          leak bot shows createCStringFromNPVariant result leaking
     7
     8        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.cpp:
     9        (pluginInvoke): Added a missing free.
     10
    1112007-12-26  Jan Michael Alonzo  <jmalonzo@unpluggable.com>
    212
  • trunk/WebKitTools/DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.cpp

    r28715 r29032  
    337337        for (uint32_t i = 0; i < argCount; i++) {
    338338            assert(NPVARIANT_IS_STRING(args[i]));
    339             char *propertyString = createCStringFromNPVariant(&args[i]);
     339            NPUTF8* propertyString = createCStringFromNPVariant(&args[i]);
    340340            NPIdentifier propertyIdentifier = browser->getstringidentifier(propertyString);
     341            free(propertyString);
    341342           
    342343            NPVariant variant;
Note: See TracChangeset for help on using the changeset viewer.