зеркало из https://github.com/mozilla/pjs.git
Bug 484309 fixing more allocator mismatches r+sr=bsmedberg
This commit is contained in:
Родитель
006d522afb
Коммит
6eaf345e1d
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче