Fix some leaks.  This fixes the major malloc memory leak in allApps.  Still tracking some much more minor issues.
diff --git a/rsObjectBase.cpp b/rsObjectBase.cpp
index 0008ea4..1b442ba 100644
--- a/rsObjectBase.cpp
+++ b/rsObjectBase.cpp
@@ -39,6 +39,7 @@
     rsAssert(!mUserRefCount);
     rsAssert(!mSysRefCount);
     remove();
+    delete[] mName;
 }
 
 void ObjectBase::dumpLOGV(const char *op) const