[Mono-bugs] [Bug 430920] [PATCH] Assembly.CodeBase differs from .net on Windows

bugzilla_noreply at novell.com bugzilla_noreply at novell.com
Tue Oct 7 16:57:42 EDT 2008


https://bugzilla.novell.com/show_bug.cgi?id=430920

User gonzalo at novell.com added comment
https://bugzilla.novell.com/show_bug.cgi?id=430920#c3


Gonzalo Paniagua Javier <gonzalo at novell.com> changed:

           What    |Removed                                         |Added
----------------------------------------------------------------------------
         AssignedTo|mono-bugs at lists.ximian.com                      |gonzalo at novell.com
             Status|NEW                                             |ASSIGNED




--- Comment #3 from Gonzalo Paniagua Javier <gonzalo at novell.com>  2008-10-07 14:57:41 MDT ---
Replaced the one-line change with this:

                char *prepend = "file://";
#if PLATFORM_WIN32
                if (*absolute == '/' && *(absolute + 1) == '/') {
                        prepend = "file:";
                } else {
                        prepend = "file:///";
                }
#else
                uri = g_strconcat (prepend, absolute, NULL);
#endif

If there are no objections, I'll check it in.


-- 
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.


More information about the mono-bugs mailing list