git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7291
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2004-08-19 Vicki Murley <vicki@apple.com>
+
+ Reviewed by John.
+
+ * kjs/property_map.cpp:
+ (KJS::PropertyMap::put): initialize deletedElementIndex to zero, to make the compiler happy
+
2004-08-17 Darin Adler <darin@apple.com>
Reviewed by Adele.
int i = h & _table->sizeMask;
int k = 0;
bool foundDeletedElement = false;
- int deletedElementIndex;
+ int deletedElementIndex = 0; /* initialize to make the compiler happy */
#if DUMP_STATISTICS
++numProbes;
numCollisions += _table->entries[i].key && _table->entries[i].key != rep;