Bug 484309 fixing more allocator mismatches r+sr=bsmedberg

This commit is contained in:
Neil Rashbrook 2009-04-11 17:33:52 +01:00
Родитель 006d522afb
Коммит 6eaf345e1d
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -65,7 +65,7 @@ nsInt2StrHashtable::Put(PRUint32 key, const char* aData)
nsPRUint32Key k(key);
char* oldValue = (char*)mHashtable.Put(&k, value);
if (oldValue)
nsCRT::free(oldValue);
NS_Free(oldValue);
return NS_OK;
}
@ -85,7 +85,7 @@ nsInt2StrHashtable::Remove(PRUint32 key)
nsPRUint32Key k(key);
char* oldValue = (char*)mHashtable.Remove(&k);
if (oldValue)
nsCRT::free(oldValue);
NS_Free(oldValue);
return NS_OK;
}