diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-06-13 12:35:34 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-06-13 12:35:34 +0000 |
commit | 1fd46215b2567bfb2d659859796920a0b0637550 (patch) | |
tree | f48b95185886608d8e06ce988647016905a9e2f4 | |
parent | a6691317e5ce1600a587ba518a29b5716732597a (diff) | |
download | busybox-1fd46215b2567bfb2d659859796920a0b0637550.tar.gz |
fsck_minix: forgotten bit of previous commit...
-rw-r--r-- | util-linux/fsck_minix.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/util-linux/fsck_minix.c b/util-linux/fsck_minix.c index 795a5493c..531c1ea0b 100644 --- a/util-linux/fsck_minix.c +++ b/util-linux/fsck_minix.c @@ -190,6 +190,7 @@ struct globals { #define check_file_blk (G.check_file_blk ) #define current_name (G.current_name ) #define INIT_G() do { \ + PTR_TO_GLOBALS = xzalloc(sizeof(G)); \ dirsize = 16; \ namelen = 14; \ current_name[0] = '/'; \ |