]> git.meshlink.io Git - catta/blobdiff - rr.c
fix some memory corruption bugs
[catta] / rr.c
diff --git a/rr.c b/rr.c
index a1c5868ce0f980c694b04231b84bf4c9d6325905..fe475eb0e5a58f69ed11cab5d5c0214130802877 100644 (file)
--- a/rr.c
+++ b/rr.c
@@ -241,18 +241,17 @@ guint flx_key_hash(const flxKey *k) {
 }
 
 static gboolean rdata_equal(const flxRecord *a, const flxRecord *b) {
-    gchar *t;
     g_assert(a);
     g_assert(b);
     g_assert(a->key->type == b->key->type);
 
-    t = flx_record_to_string(a);
-    g_message("comparing %s", t);
-    g_free(t);
+/*     t = flx_record_to_string(a); */
+/*     g_message("comparing %s", t); */
+/*     g_free(t); */
 
-    t = flx_record_to_string(b);
-    g_message("and %s", t);
-    g_free(t);
+/*     t = flx_record_to_string(b); */
+/*     g_message("and %s", t); */
+/*     g_free(t); */
 
     
     switch (a->key->type) {