]> diplodocus.org Git - nmh/blobdiff - sbr/context_foil.c
Just show relevant portion of invalid encoded string.
[nmh] / sbr / context_foil.c
index 7eccd79fd755136528c193301459cfd590c38fad..e8407066d981420257bd1187150bfbddc4783fe2 100644 (file)
@@ -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.
@@ -20,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:
@@ -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;