X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/81a21a9a97d8633f6d6231e31fdb6e328d0d3ff2..39bfc0b25d39979d1ec47b14e69a4f17ea3493ab:/sbr/context_foil.c diff --git a/sbr/context_foil.c b/sbr/context_foil.c index 7eccd79f..aabac558 100644 --- a/sbr/context_foil.c +++ b/sbr/context_foil.c @@ -2,8 +2,6 @@ /* * context_foil.c -- foil search of profile and context * - * $Id$ - * * This code is Copyright (c) 2002, by the authors of nmh. See the * COPYRIGHT file in the root directory of the nmh distribution for * complete copyright information. @@ -46,9 +44,8 @@ context_foil (char *path) * If path is given, create a minimal profile/context list */ if (path) { - m_defs = (struct node *) mh_xmalloc (sizeof(*np)); - - np = m_defs; + NEW(np); + m_defs = np; if (!(np->n_name = strdup ("Path"))) { advise (NULL, "strdup failed"); return -1;