]> err.no Git - moreutils/commitdiff
avoid uninitalized value warning
authorJoey Hess <joey@gnu.kitenet.net>
Thu, 2 Jul 2009 19:17:59 +0000 (15:17 -0400)
committerJoey Hess <joey@gnu.kitenet.net>
Thu, 2 Jul 2009 19:17:59 +0000 (15:17 -0400)
parallel.c

index f820cb0150bdd56786f322861cd87d653fa3c6e6..67b723daec6e5b9d635de521269bc64b996a6972 100644 (file)
@@ -81,7 +81,7 @@ int main(int argc, char **argv) {
        int maxload = -1;
        int opt;
        char **command = calloc(sizeof(char*), argc);
-       char **arguments;
+       char **arguments = NULL;
        int argidx = 0;
        int cidx = 0;
        int returncode = 0;