]> diplodocus.org Git - nmh/blobdiff - sbr/arglist.c
mhlsbr.c: Flip parse()'s logic. Remove oneline()'s else after break.
[nmh] / sbr / arglist.c
index 68a26a203133cbb9644e9bd37f7e4edd12e107a7..328d9e9c8f30dfa4cedb05d1d5d65082ca60d039 100644 (file)
@@ -1,6 +1,4 @@
-
-/*
- * arglist.c -- Routines for handling argument lists for execvp() and friends
+/* arglist.c -- Routines for handling argument lists for execvp() and friends
  *
  * This code is Copyright (c) 2013, by the authors of nmh.  See the
  * COPYRIGHT file in the root directory of the nmh distribution for
@@ -133,8 +131,7 @@ arglist_free(char *command, char **argvarray)
 {
     int i;
 
-    if (command != NULL)
-       free(command);
+    mh_xfree(command);
 
     if (argvarray != NULL) {
        for (i = 0; argvarray[i] != NULL; i++)