]> sjero.net Git - wget/blobdiff - src/netrc.c
[svn] Retired the `boolean' type. Renamed FREE_MAYBE to xfree_null and moved the
[wget] / src / netrc.c
index 1a16b0a87ba5e3fe388e91ce1f64d56b9aac51f1..af2b2b492a839d50720534a3775a87e10f85a02b 100644 (file)
@@ -455,9 +455,9 @@ free_netrc(acc_t *l)
   while (l)
     {
       t = l->next;
-      FREE_MAYBE (l->acc);
-      FREE_MAYBE (l->passwd);
-      FREE_MAYBE (l->host);
+      xfree_null (l->acc);
+      xfree_null (l->passwd);
+      xfree_null (l->host);
       xfree (l);
       l = t;
     }