[Mono-bugs] [Bug 617129] New: Crash when creating process

bugzilla_noreply at novell.com bugzilla_noreply at novell.com
Thu Jun 24 11:33:51 EDT 2010


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

http://bugzilla.novell.com/show_bug.cgi?id=617129#c0


           Summary: Crash when creating process
    Classification: Mono
           Product: Mono: Runtime
           Version: SVN
          Platform: Other
        OS/Version: Other
            Status: NEW
          Severity: Normal
          Priority: P5 - None
         Component: io-layer
        AssignedTo: lupus at novell.com
        ReportedBy: rkvinge at novell.com
         QAContact: mono-bugs at lists.ximian.com
          Found By: ---
           Blocker: ---


Test case:

using System.Threading;
using System;
using System.Diagnostics;

public class Test {
    public static void Main() {
    Process process = new Process ();
    process.StartInfo.FileName = "/bin/bash'"; // note the trailing '
    process.StartInfo.Arguments = "";
    process.StartInfo.UseShellExecute = false;
    process.Start ();
}
}

results in:

#3  <signal handler called>
#4  CreateProcess (appname=0x9b4140, cmdline=0x7fc62d1d5f74,
process_attrs=<value optimized out>, thread_attrs=<value optimized out>,
inherit_handles=<value optimized out>, create_flags=<value optimized out>,
new_environ=0x0, cwd=0x0, startup=0x7fffb6c763d0, process_info=0x7fffb6c76440)
at processes.c:837

> mono --version
Mono JIT compiler version 2.7 (/trunk/mono r159044 Thu Jun 17 11:47:07 CEST
2010)
Copyright (C) 2002-2010 Novell, Inc and Contributors. www.mono-project.com
    TLS:           __thread
    GC:            Included Boehm (with typed GC and Parallel Mark)
    SIGSEGV:       altstack
    Notifications: epoll
    Architecture:  amd64
    Disabled:      none
    Misc:          debugger softdebug 
    LLVM supported

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


More information about the mono-bugs mailing list