/*
* 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;