Edited platform-dependent part of Blorb layer to use g_malloc() functions, they are...
authorPhilip Chimento <philip.chimento@gmail.com>
Tue, 26 May 2009 20:11:57 +0000 (20:11 +0000)
committerPhilip Chimento <philip.chimento@gmail.com>
Tue, 26 May 2009 20:11:57 +0000 (20:11 +0000)
git-svn-id: http://lassie.dyndns-server.com/svn/gargoyle-gtk@94 ddfedd41-794f-dd11-ae45-00112f111e67

libchimara/gi_blorb.c

index 329280dd1adfe44121a0a9640991e064530236a0..9f4c031b709e642a2e2d9a2f0ae3cb160f8461b8 100644 (file)
@@ -582,22 +582,22 @@ giblorb_resdesc_t *giblorb_bsearch(giblorb_resdesc_t *sample,
 /* Boring utility functions. If your platform doesn't support ANSI 
     malloc(), feel free to edit these however you like. */
 
-#include <stdlib.h> /* The OS-native header file -- you can edit 
+#include <glib.h> /* The OS-native header file -- you can edit 
     this too. */
 
 static void *giblorb_malloc(glui32 len)
 {
-    return malloc(len);
+    return g_malloc(len);
 }
 
 static void *giblorb_realloc(void *ptr, glui32 len)
 {
-    return realloc(ptr, len);
+    return g_realloc(ptr, len);
 }
 
 static void giblorb_free(void *ptr)
 {
-    free(ptr);
+    g_free(ptr);
 }