diff options
Diffstat (limited to 'umount.c')
-rw-r--r-- | umount.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -142,7 +142,7 @@ char *mtab_next(void **iter) | |||
142 | 142 | ||
143 | /* Don't bother to clean up, since exit() does that | 143 | /* Don't bother to clean up, since exit() does that |
144 | * automagically, so we can save a few bytes */ | 144 | * automagically, so we can save a few bytes */ |
145 | #if 0 | 145 | #ifdef BB_FEATURE_CLEAN_UP |
146 | void mtab_free(void) | 146 | void mtab_free(void) |
147 | { | 147 | { |
148 | struct _mtab_entry_t *this, *next; | 148 | struct _mtab_entry_t *this, *next; |
@@ -235,6 +235,9 @@ extern int umount_main(int argc, char **argv) | |||
235 | if (argc < 2) { | 235 | if (argc < 2) { |
236 | usage(umount_usage); | 236 | usage(umount_usage); |
237 | } | 237 | } |
238 | #ifdef BB_FEATURE_CLEAN_UP | ||
239 | atexit(mtab_free); | ||
240 | #endif | ||
238 | 241 | ||
239 | /* Parse any options */ | 242 | /* Parse any options */ |
240 | while (--argc > 0 && **(++argv) == '-') { | 243 | while (--argc > 0 && **(++argv) == '-') { |