No idea why it's failing for you.

You could start by applying the attached patch that will print the
original file name and the shadow-copied file name. The directory for
the shadow-copied file should be there, but may be there's some problem
with permissions or the disk is full or ....

-Gonzalo


On Tue, 2008-11-04 at 12:03 +0100, Christian Hobelsberger wrote:
> I have just done a fresh checkout and recompiled everything again -
> but still the same problem.
> 
> >  mono --version
> Mono JIT compiler version 2.1 (/trunk/mono r117851)
> Copyright (C) 2002-2008 Novell, Inc and Contributors.
> www.mono-project.com
>         TLS:           __thread
>         GC:            Included Boehm (with typed GC)
>         SIGSEGV:       altstack
>         Notifications: epoll
>         Architecture:  amd64
>         Disabled:      none
> 
> In the browser it says:
> Version information: Mono Version: 2.0.50727.1433; ASP.NET Version:
> 2.0.50727.1433
> 
> So still no luck!? Any ideas?

Index: appdomain.c
===================================================================
--- appdomain.c	(revision 117902)
+++ appdomain.c	(working copy)
@@ -1349,6 +1349,7 @@
 	if (!private_file_needs_copying (filename, &src_sbuf, shadow))
 		return (char*) shadow;
 
+	printf ("Orig: %s\nShadow: %s\n", filename, shadow);
 	orig = g_utf8_to_utf16 (filename, strlen (filename), NULL, NULL, NULL);
 	dest = g_utf8_to_utf16 (shadow, strlen (shadow), NULL, NULL, NULL);
 	DeleteFile (dest);
_______________________________________________
Mono-list maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-list

Reply via email to