]> Dogcows Code - chaz/homebank/blobdiff - src/hb-tag.c
add plugin engine (supports C and Perl plugins)
[chaz/homebank] / src / hb-tag.c
index 8554cfa3ad747d884431f24675b585c9bd0af383..c8353a489d0916c616c4929c81db437ba2d97d1c 100644 (file)
@@ -20,6 +20,9 @@
 #include "homebank.h"
 #include "hb-tag.h"
 
+#include "ext.h"
+#include "refcount.h"
+
 #define MYDEBUG 0
 
 #if MYDEBUG
@@ -37,12 +40,12 @@ extern struct HomeBank *GLOBALS;
 void da_tag_free(Tag *item)
 {
        DB( g_print("da_tag_free\n") );
-       if(item != NULL)
+       if(rc_unref(item))
        {
                DB( g_print(" => %d, %s\n", item->key, item->name) );
 
                g_free(item->name);
-               g_free(item);
+               rc_free(item);
        }
 }
 
@@ -50,7 +53,7 @@ void da_tag_free(Tag *item)
 Tag *da_tag_malloc(void)
 {
        DB( g_print("da_tag_malloc\n") );
-       return g_malloc0(sizeof(Tag));
+       return rc_alloc(sizeof(Tag));
 }
 
 
This page took 0.020398 seconds and 4 git commands to generate.