From fc174c871b4f85e558766c1ca55661fa7b1b4c9a Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Tue, 12 Apr 2005 17:19:18 +0000 Subject: fix some memory corruption bugs make use auf SRV registration functions in main.c git-svn-id: file:///home/lennart/svn/public/avahi/trunk@24 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe --- rr.c | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) (limited to 'rr.c') diff --git a/rr.c b/rr.c index a1c5868..fe475eb 100644 --- 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) { -- cgit