Replacing 'ecma_Free' prefix in ecma_Free{Object,Property,Number,ArrayFirstChunk,ArrayNonFirstChunk} to 'ecma_Dealloc'.

This commit is contained in:
Ruben Ayrapetyan
2014-07-16 21:13:23 +04:00
parent b72185696a
commit 6918db2f59
5 changed files with 23 additions and 21 deletions
+2 -2
View File
@@ -212,7 +212,7 @@ ecma_GCRun( void)
}
pNextProperty = ecma_GetPointer( property->m_pNextProperty);
ecma_FreeProperty( property);
ecma_DeallocProperty( property);
}
if ( pObject->m_IsLexicalEnvironment )
@@ -233,7 +233,7 @@ ecma_GCRun( void)
}
}
ecma_FreeObject( pObject);
ecma_DeallocObject( pObject);
}
} /* ecma_RunGC */