Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGonzalo Paniagua Javier <gonzalo.mono@gmail.com>2006-11-28 03:05:00 +0300
committerGonzalo Paniagua Javier <gonzalo.mono@gmail.com>2006-11-28 03:05:00 +0300
commit76822ab984e95090590db1b85a08e5b4b3644f92 (patch)
tree286c86ab838cce32835218cc5b635f51e01aad8e /mcs/class/System/System.Diagnostics/Process.cs
parent2181f4059a431c70671c8d787573ed5ba685ca24 (diff)
2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* Process.cs: the Process returned by the static Start method never had the right ProcessStartInfo. Fixes bug #80019. svn path=/trunk/mcs/; revision=68543
Diffstat (limited to 'mcs/class/System/System.Diagnostics/Process.cs')
-rw-r--r--mcs/class/System/System.Diagnostics/Process.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/mcs/class/System/System.Diagnostics/Process.cs b/mcs/class/System/System.Diagnostics/Process.cs
index da3baa0f480..e76df4ead01 100644
--- a/mcs/class/System/System.Diagnostics/Process.cs
+++ b/mcs/class/System/System.Diagnostics/Process.cs
@@ -1043,6 +1043,7 @@ namespace System.Diagnostics {
Process process=new Process();
bool ret;
+ process.StartInfo = startInfo;
ret=Start_common(startInfo, process);
if(ret==true) {