svn commit: branches/busybox_1_1_stable/util-linux

aldot at busybox.net aldot at busybox.net
Fri May 26 14:05:02 UTC 2006


Author: aldot
Date: 2006-05-26 07:05:00 -0700 (Fri, 26 May 2006)
New Revision: 15190

Log:
- work around bug in gcc-3.4.x on ARM


Modified:
   branches/busybox_1_1_stable/util-linux/mount.c


Changeset:
Modified: branches/busybox_1_1_stable/util-linux/mount.c
===================================================================
--- branches/busybox_1_1_stable/util-linux/mount.c	2006-05-26 13:54:07 UTC (rev 15189)
+++ branches/busybox_1_1_stable/util-linux/mount.c	2006-05-26 14:05:00 UTC (rev 15190)
@@ -351,7 +351,7 @@
 
 	// 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);




More information about the busybox-cvs mailing list