From ca85cdbe4c414f5892b57a3c0fb2439f3061496c Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Thu, 26 Apr 2001 18:43:36 +0000 Subject: Doh. I never allocated storate for the struct stat I am using. There was just a never initialized pointer. -Erik --- coreutils/chmod.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'coreutils/chmod.c') diff --git a/coreutils/chmod.c b/coreutils/chmod.c index 93b7f78cd..742770e90 100644 --- a/coreutils/chmod.c +++ b/coreutils/chmod.c @@ -30,12 +30,12 @@ #include "busybox.h" -struct stat *theMode; +struct stat theMode; static int fileAction(const char *fileName, struct stat *statbuf, void* junk) { - if (chmod(fileName, theMode->st_mode) == 0) + if (chmod(fileName, theMode.st_mode) == 0) return (TRUE); perror(fileName); return (FALSE); @@ -59,7 +59,7 @@ int chmod_main(int argc, char **argv) if (argc > optind && argc > 2 && argv[optind]) { /* Parse the specified mode */ - if (parse_mode(argv[optind], &(theMode->st_mode)) == FALSE) { + if (parse_mode(argv[optind], &(theMode.st_mode)) == FALSE) { error_msg_and_die( "unknown mode: %s", argv[optind]); } } else { -- cgit v1.2.3