aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoraldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-05-26 14:05:48 +0000
committeraldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-05-26 14:05:48 +0000
commitd8b13fc98237d2f3f0afac43226364a9cdce055a (patch)
treefd2873bd9200a0a40ed37b874e5b5633e78ef8c1
parent19ecea4a536a23e43c865fd89aa5b216b5341754 (diff)
downloadbusybox-w32-d8b13fc98237d2f3f0afac43226364a9cdce055a.tar.gz
busybox-w32-d8b13fc98237d2f3f0afac43226364a9cdce055a.tar.bz2
busybox-w32-d8b13fc98237d2f3f0afac43226364a9cdce055a.zip
- work around bug in gcc-3.4.x on ARM
git-svn-id: svn://busybox.net/trunk/busybox@15191 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r--util-linux/mount.c2
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);