зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1379308 - Improve the hash key generation for two of the hashtables in nsCSSRuleProcessor.cpp; r=mats
This commit is contained in:
Родитель
5dd57ee395
Коммит
4390e804ca
|
@ -324,7 +324,7 @@ RuleHash_TagTable_MoveEntry(PLDHashTable *table, const PLDHashEntryHdr *from,
|
|||
static PLDHashNumber
|
||||
RuleHash_NameSpaceTable_HashKey(const void *key)
|
||||
{
|
||||
return NS_PTR_TO_INT32(key);
|
||||
return HashGeneric(key);
|
||||
}
|
||||
|
||||
static bool
|
||||
|
@ -3503,7 +3503,7 @@ struct RuleByWeightEntry : public PLDHashEntryHdr {
|
|||
static PLDHashNumber
|
||||
HashIntKey(const void *key)
|
||||
{
|
||||
return PLDHashNumber(NS_PTR_TO_INT32(key));
|
||||
return HashGeneric(key);
|
||||
}
|
||||
|
||||
static bool
|
||||
|
|
Загрузка…
Ссылка в новой задаче