diff options
author | Eric Andersen | 2000-07-25 18:01:20 +0000 |
---|---|---|
committer | Eric Andersen | 2000-07-25 18:01:20 +0000 |
commit | b040d4f3da1545225b9a58301deb29acee6aa7f3 (patch) | |
tree | f029b6d39fc4619a8369094efd4c558b10f3d927 /mount.c | |
parent | b9ea02c04b91773e6e5a116313b360f3499a2d4e (diff) | |
download | busybox-b040d4f3da1545225b9a58301deb29acee6aa7f3.zip busybox-b040d4f3da1545225b9a58301deb29acee6aa7f3.tar.gz |
Use BB_FEATURE_CLEAN_UP where appropriate
-Erik
Diffstat (limited to 'mount.c')
-rw-r--r-- | mount.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -347,9 +347,9 @@ extern int mount_main(int argc, char **argv) mntentlist[i].mnt_opts, mntentlist[i].mnt_freq, mntentlist[i].mnt_passno); } +#ifdef BB_FEATURE_CLEAN_UP /* Don't bother to close files or free memory. Exit * does that automagically, so we can save a few bytes */ -#if 0 free( mntentlist); close(fd); #endif |