summaryrefslogtreecommitdiff
path: root/mount.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2000-07-25 18:01:20 +0000
committerEric Andersen <andersen@codepoet.org>2000-07-25 18:01:20 +0000
commitb040d4f3da1545225b9a58301deb29acee6aa7f3 (patch)
treef029b6d39fc4619a8369094efd4c558b10f3d927 /mount.c
parentb9ea02c04b91773e6e5a116313b360f3499a2d4e (diff)
downloadbusybox-w32-b040d4f3da1545225b9a58301deb29acee6aa7f3.tar.gz
busybox-w32-b040d4f3da1545225b9a58301deb29acee6aa7f3.tar.bz2
busybox-w32-b040d4f3da1545225b9a58301deb29acee6aa7f3.zip
Use BB_FEATURE_CLEAN_UP where appropriate
-Erik
Diffstat (limited to 'mount.c')
-rw-r--r--mount.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mount.c b/mount.c
index 610d12d34..6e95cdc79 100644
--- a/mount.c
+++ b/mount.c
@@ -347,9 +347,9 @@ extern int mount_main(int argc, char **argv)
347 mntentlist[i].mnt_opts, mntentlist[i].mnt_freq, 347 mntentlist[i].mnt_opts, mntentlist[i].mnt_freq,
348 mntentlist[i].mnt_passno); 348 mntentlist[i].mnt_passno);
349 } 349 }
350#ifdef BB_FEATURE_CLEAN_UP
350 /* Don't bother to close files or free memory. Exit 351 /* Don't bother to close files or free memory. Exit
351 * does that automagically, so we can save a few bytes */ 352 * does that automagically, so we can save a few bytes */
352#if 0
353 free( mntentlist); 353 free( mntentlist);
354 close(fd); 354 close(fd);
355#endif 355#endif