X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Futils_ignorelist.c;h=94d6bdae7c92a5989149fb2ce73e0b3a62e4ecec;hb=4cf9eb921f5994d4515613efa8739ce445cfd9a1;hp=d2546aab3db1a1506d909cb8309950d1195d4dab;hpb=7e5df1a2c6611bd4ac9fb8ac4b78106f9139ae6e;p=collectd.git diff --git a/src/utils_ignorelist.c b/src/utils_ignorelist.c index d2546aab..94d6bdae 100644 --- a/src/utils_ignorelist.c +++ b/src/utils_ignorelist.c @@ -217,10 +217,6 @@ ignorelist_t *ignorelist_create (int invert) /* smalloc exits if it failes */ il = (ignorelist_t *) smalloc (sizeof (ignorelist_t)); - DEBUG("Ignorelist created 0x%p, default is %s", - (void *) il, - invert ? "collect" : "ignore"); - memset (il, '\0', sizeof (ignorelist_t)); /* @@ -240,8 +236,6 @@ void ignorelist_free (ignorelist_t *il) ignorelist_item_t *this; ignorelist_item_t *next; - DEBUG ("(il = 0x%p)", (void *) il); - if (il == NULL) return;