diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-05-26 14:05:48 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-05-26 14:05:48 +0000 |
commit | 08421e1d0cf1938947553b02b0788b09e11e5c0d (patch) | |
tree | fd2873bd9200a0a40ed37b874e5b5633e78ef8c1 /util-linux/mount.c | |
parent | 8379053b11aa616f47003c33afa44353f4a74f8f (diff) | |
download | busybox-w32-08421e1d0cf1938947553b02b0788b09e11e5c0d.tar.gz busybox-w32-08421e1d0cf1938947553b02b0788b09e11e5c0d.tar.bz2 busybox-w32-08421e1d0cf1938947553b02b0788b09e11e5c0d.zip |
- work around bug in gcc-3.4.x on ARM
Diffstat (limited to 'util-linux/mount.c')
-rw-r--r-- | util-linux/mount.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util-linux/mount.c b/util-linux/mount.c index 4bd6433ca..a191f3260 100644 --- a/util-linux/mount.c +++ b/util-linux/mount.c | |||
@@ -351,7 +351,7 @@ static int singlemount(struct mntent *mp) | |||
351 | 351 | ||
352 | // If mount failed, clean up loop file (if any). | 352 | // If mount failed, clean up loop file (if any). |
353 | 353 | ||
354 | if (rc && loopFile) { | 354 | if (ENABLE_FEATURE_MOUNT_LOOP && rc && loopFile) { |
355 | del_loop(mp->mnt_fsname); | 355 | del_loop(mp->mnt_fsname); |
356 | if (ENABLE_FEATURE_CLEAN_UP) { | 356 | if (ENABLE_FEATURE_CLEAN_UP) { |
357 | free(loopFile); | 357 | free(loopFile); |