Bug 1179451 - Part 3: Use .get() to assign nsRefPtrs to raw pointers. r=froydnj

This commit is contained in:
Aryeh Gregor
2015-08-13 15:22:48 +03:00
parent 304c834402
commit a497c75a3d
2 changed files with 2 additions and 2 deletions

View File

@@ -41,7 +41,7 @@ PluginScriptableObjectChild::IdentifierTable PluginScriptableObjectChild::sIdent
/* static */ PluginScriptableObjectChild::StoredIdentifier*
PluginScriptableObjectChild::HashIdentifier(const nsCString& aIdentifier)
{
StoredIdentifier* stored = sIdentifiers.Get(aIdentifier);
StoredIdentifier* stored = sIdentifiers.Get(aIdentifier).get();
if (stored) {
return stored;
}