please review the attached patch (to linux-user/path.c), which i
believe fixes the problem of qemu looping forever on symlinks when
using -L.  it is undesirable (i believe) for the -L option to search
all subdirectories.  this is in reference to debian bug #297572
(bugs.debian.org/297572).

mike gilbert
--- source/qemu-0.8.1/linux-user/path.c	2006-05-03 16:32:58.000000000 -0400
+++ path-me.c	2006-06-22 21:31:19.000000000 -0400
@@ -100,7 +100,7 @@
         return;
 
     base = new_entry("", NULL, prefix+1);
-    base = add_dir_maybe(base);
+    //base = add_dir_maybe(base);
     if (base->num_entries == 0) {
         free (base);
         base = NULL;

_______________________________________________
Qemu-devel mailing list
Qemu-devel@nongnu.org
http://lists.nongnu.org/mailman/listinfo/qemu-devel

Reply via email to