Frees a block of memory using the XPCOM memory manager.
#include "nsXPCOM.h" void NS_Free( void* aPtr );
This function provides a convenient way to access the XPCOM memory manager. It is equivalent to calling free
on the nsIMemory
instance returned from NS_GetMemoryManager
.
This function was finalized for Mozilla 1.8. See bug 267767 for details.