Changeset 936 in webkit for trunk/JavaScriptCore/kjs


Ignore:
Timestamp:
Apr 2, 2002, 11:36:09 AM (23 years ago)
Author:
darin
Message:
  • kjs/property_map.cpp: (PropertyMap::~PropertyMap): Deallocate the map by calling clear so we don't leak the entire map.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/kjs/property_map.cpp

    r798 r936  
    2525#include "property_map.h"
    2626
     27#include <config.h>
     28
    2729#include <string.h>
    2830#include <assert.h>
     
    127129PropertyMap::~PropertyMap()
    128130{
     131#ifdef APPLE_CHANGES
     132  clear();
     133#endif
    129134}
    130135
Note: See TracChangeset for help on using the changeset viewer.