aboutsummaryrefslogtreecommitdiff
path: root/src/gnsrecord/plugin_gnsrecord_dns.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/gnsrecord/plugin_gnsrecord_dns.c')
-rw-r--r--src/gnsrecord/plugin_gnsrecord_dns.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gnsrecord/plugin_gnsrecord_dns.c b/src/gnsrecord/plugin_gnsrecord_dns.c
index 5410d9546..9ac6fb9e6 100644
--- a/src/gnsrecord/plugin_gnsrecord_dns.c
+++ b/src/gnsrecord/plugin_gnsrecord_dns.c
@@ -65,7 +65,7 @@ dns_value_to_string (void *cls,
65 if ((NULL == ns) || (off != data_size)) 65 if ((NULL == ns) || (off != data_size))
66 { 66 {
67 GNUNET_break_op (0); 67 GNUNET_break_op (0);
68 GNUNET_free_non_null (ns); 68 GNUNET_free (ns);
69 return NULL; 69 return NULL;
70 } 70 }
71 return ns; 71 return ns;
@@ -80,7 +80,7 @@ dns_value_to_string (void *cls,
80 if ((NULL == cname) || (off != data_size)) 80 if ((NULL == cname) || (off != data_size))
81 { 81 {
82 GNUNET_break_op (0); 82 GNUNET_break_op (0);
83 GNUNET_free_non_null (cname); 83 GNUNET_free (cname);
84 return NULL; 84 return NULL;
85 } 85 }
86 return cname; 86 return cname;
@@ -121,7 +121,7 @@ dns_value_to_string (void *cls,
121 if ((NULL == ptr) || (off != data_size)) 121 if ((NULL == ptr) || (off != data_size))
122 { 122 {
123 GNUNET_break_op (0); 123 GNUNET_break_op (0);
124 GNUNET_free_non_null (ptr); 124 GNUNET_free (ptr);
125 return NULL; 125 return NULL;
126 } 126 }
127 return ptr; 127 return ptr;