X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/7111aba92b83fff6b0ac8637dd1f6e2fa287ac8c..cffe37acfaf6896d52860e77585b5000565ec3f7:/uip/install-mh.c diff --git a/uip/install-mh.c b/uip/install-mh.c index 6b8f4442..ce766380 100644 --- a/uip/install-mh.c +++ b/uip/install-mh.c @@ -180,10 +180,10 @@ query: /* * Add some initial elements to the profile/context list */ - m_defs = (struct node *) mh_xmalloc (sizeof *np); - np = m_defs; - np->n_name = getcpy ("Path"); - np->n_field = getcpy (pathname); + NEW(np); + m_defs = np; + np->n_name = mh_xstrdup("Path"); + np->n_field = mh_xstrdup(pathname); np->n_context = 0; np->n_next = NULL;