Fix some leaks.  This fixes the major malloc memory leak in allApps.  Still tracking some much more minor issues.
diff --git a/libs/rs/rsAllocation.cpp b/libs/rs/rsAllocation.cpp
index b7d1297..2cbfe17 100644
--- a/libs/rs/rsAllocation.cpp
+++ b/libs/rs/rsAllocation.cpp
@@ -52,6 +52,8 @@
 
 Allocation::~Allocation()
 {
+    free(mPtr);
+    mPtr = NULL;
 }
 
 void Allocation::setCpuWritable(bool)