X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/0e7106da702d97e10f3bd24d8284a2ab86044ebd..9322ba2854211794c27fae9468768b80b767c211:/sbr/context_foil.c diff --git a/sbr/context_foil.c b/sbr/context_foil.c index d6c90c48..e8407066 100644 --- a/sbr/context_foil.c +++ b/sbr/context_foil.c @@ -2,14 +2,13 @@ /* * 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. */ #include +#include /* * Foil search of users .mh_profile @@ -19,7 +18,7 @@ int context_foil (char *path) { - register struct node *np; + struct node *np; /* In fact, nobody examines defpath in code paths where * it's been set by us -- the uses in the source tree are: @@ -45,12 +44,8 @@ context_foil (char *path) * If path is given, create a minimal profile/context list */ if (path) { - if (!(m_defs = (struct node *) malloc (sizeof(*np)))) { - advise (NULL, "unable to allocate profile storage"); - return -1; - } - - np = m_defs; + NEW(np); + m_defs = np; if (!(np->n_name = strdup ("Path"))) { advise (NULL, "strdup failed"); return -1;