webengine/osswebengine/MemoryManager/Src/fast_malloc.cpp
branchRCL_3
changeset 49 919f36ff910f
parent 48 79859ed3eea9
--- a/webengine/osswebengine/MemoryManager/Src/fast_malloc.cpp	Tue Aug 31 16:17:46 2010 +0300
+++ b/webengine/osswebengine/MemoryManager/Src/fast_malloc.cpp	Wed Sep 01 12:28:30 2010 +0100
@@ -448,7 +448,7 @@
 #include <e32hal.h>
 #include <hal.h>
 
-#include "MemoryManager.h"
+#include <MemoryManager.h>
 
 //#define OOM_LOGGING
 #include "MemoryLogger.h"
@@ -3677,7 +3677,7 @@
         return chunk2mem(v);
       }
     }
-    CORRUPTION_ERROR_ACTION(m);
+//    CORRUPTION_ERROR_ACTION(m);
   }
   return 0;
 }
@@ -3716,9 +3716,8 @@
       return chunk2mem(v);
     }
   }
-
-  CORRUPTION_ERROR_ACTION(m);
-  return 0;
+  //CORRUPTION_ERROR_ACTION(m);
+  //return 0;
 }
 
 /* --------------------------- realloc support --------------------------- */
@@ -5381,13 +5380,13 @@
 // global data and if closing util is not the last
 // one to be deleted, it will crash.  Luckly enough
 // , it seems to be working fine and no crash so far.
+/*
 struct ChunkClosingUtil
 {
     ~ChunkClosingUtil()     { rchunk.Close(); }
 };
-
 static ChunkClosingUtil __gx_closing;
-
+*/
 /* -----------------------------------------------------------------------
 History:
     C2.8.2 Sun Jun 12 16:01:10 2005  Doug Lea  (dl at gee)