X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/8890670d4c1e8e3f9608c2850c1fe299fb256776..c9e182de1cb1448fdc313cd08c3e0c3fd5e3938d:/uip/ap.c diff --git a/uip/ap.c b/uip/ap.c index aa56f7cb..dff6dc43 100644 --- a/uip/ap.c +++ b/uip/ap.c @@ -146,16 +146,16 @@ static int process (char *arg, int length) { int status = 0; - register char *cp; + char *cp; char error[BUFSIZ]; - register struct comp *cptr; - register struct pqpair *p, *q; + struct comp *cptr; + struct pqpair *p, *q; struct pqpair pq; - register struct mailname *mp; + struct mailname *mp; (q = &pq)->pq_next = NULL; while ((cp = getname (arg))) { - p = mh_xcalloc(1, sizeof *p); + NEW0(p); if ((mp = getm (cp, NULL, 0, error, sizeof(error))) == NULL) { p->pq_text = getcpy (cp); p->pq_error = getcpy (error);