X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=uip%2Fali.c;h=d6a480cd9850652e62229aab2ce04db0465db8d7;hp=c6b028cb413eecfe650e29b64051ba5e5e85fdd8;hb=d4c34b4439a9dbd89664de460ed37ecddc260fb1;hpb=cf1205b5cbea2f0cd6ea710ec16c637df85b647c diff --git a/uip/ali.c b/uip/ali.c index c6b028c..d6a480c 100644 --- a/uip/ali.c +++ b/uip/ali.c @@ -133,7 +133,7 @@ main(int argc, char **argv) } } if (dp) { - free(dp); + mh_free0(&dp); } } @@ -210,9 +210,9 @@ print_aka(char *p, int list, int margin) static void print_usr(char *s, int list, int norm) { - register char *cp, *pp, *vp; - register struct aka *ak; - register struct mailname *mp, *np; + char *cp, *pp, *vp; + struct aka *ak; + struct mailname *mp, *np; if ((pp = getname(s)) == NULL) adios(EX_DATAERR, NULL, "no address in \"%s\"", s); @@ -244,5 +244,5 @@ print_usr(char *s, int list, int norm) print_aka(vp ? vp : s, list, 0); if (vp) - free(vp); + mh_free0(&vp); }