X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/6fc2909634fb431c65ecfa8b6db4f6519f99b389..8374c3c:/uip/install-mh.c?ds=inline diff --git a/uip/install-mh.c b/uip/install-mh.c index 6b8f4442..ea4e876b 100644 --- a/uip/install-mh.c +++ b/uip/install-mh.c @@ -180,9 +180,9 @@ 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"); + NEW(np); + m_defs = np; + np->n_name = mh_xstrdup("Path"); np->n_field = getcpy (pathname); np->n_context = 0; np->n_next = NULL;