http://bugzilla.novell.com/show_bug.cgi?id=550476

User [email protected] added comment
http://bugzilla.novell.com/show_bug.cgi?id=550476#c3





--- Comment #3 from Martin Baulig <[email protected]>  2009-10-28 11:33:22 MDT 
---
Try changing

    if ((path.Length < 2) || (root.Length < 2))
        return null;

into

    if (root == "")
        return path;
    else if ((path.Length < 2) || (root.Length < 2))
        return null;

that should fix it.

-- 
Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
_______________________________________________
mono-bugs maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-bugs

Reply via email to