From: Bernhard Reutner-Fischer Date: Fri, 26 May 2006 14:05:00 +0000 (-0000) Subject: - work around bug in gcc-3.4.x on ARM X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=ec74f95d10c20d331b6fb141d60f5b4ac8d8dd5e;p=oweals%2Fbusybox.git - work around bug in gcc-3.4.x on ARM --- diff --git a/util-linux/mount.c b/util-linux/mount.c index 61ceba829..88baf3f9d 100644 --- a/util-linux/mount.c +++ b/util-linux/mount.c @@ -351,7 +351,7 @@ static int singlemount(struct mntent *mp) // If mount failed, clean up loop file (if any). - if (rc && loopFile) { + if (ENABLE_FEATURE_MOUNT_LOOP && rc && loopFile) { del_loop(mp->mnt_fsname); if (ENABLE_FEATURE_CLEAN_UP) { free(loopFile);