[Mono-bugs] [Bug 354051] New: SIGSEGV in Process.Start with Arguments = null and UseShellExecute = false.

bugzilla_noreply at novell.com bugzilla_noreply at novell.com
Tue Jan 15 18:18:30 EST 2008


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


           Summary: SIGSEGV in Process.Start with Arguments = null and
                    UseShellExecute = false.
           Product: Mono: Class Libraries
           Version: 1.2.2
          Platform: x86
        OS/Version: Linux
            Status: NEW
          Severity: Normal
          Priority: P5 - None
         Component: System
        AssignedTo: mono-bugs at lists.ximian.com
        ReportedBy: victor at zverovich.net
         QAContact: mono-bugs at lists.ximian.com
          Found By: ---


SIGSEGV when running the following program. See stderr.txt attached.

using System.Diagnostics;

class Test
{
    static void Main(string[] args)
    {
        ProcessStartInfo info = new ProcessStartInfo("ls", null);
        info.UseShellExecute = false;
        Process.Start(info);
    }
}


-- 
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