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:
authorRaja R Harinath <harinath@hurrynot.org>2007-07-11 15:13:13 +0400
committerRaja R Harinath <harinath@hurrynot.org>2007-07-11 15:13:13 +0400
commitf36b1982dc5f7ee31b9320dd47ae87baaf1eef01 (patch)
tree4a8d8e87c33e580e192a47f924d5e57e38a34114 /mcs/class/System/System.Diagnostics/ProcessStartInfo.cs
parent5452906cf6b325ca375cf2a171bf35ba1ccc661e (diff)
In .:
2007-07-11 Ankit Jain <jankit@novell.com> * System_test.dll.sources: Add ProcessStartInfoTest.cs. In System.Diagnostics: 2007-07-11 Ankit Jain <jankit@novell.com> * ProcessStartInfo.cs (WorkingDirectory.set): Don't set working_directory to null. In Test/System.Diagnostics: 2007-07-11 Ankit Jain <jankit@novell.com> * ProcessStartInfoTest.cs: New. svn path=/trunk/mcs/; revision=81783
Diffstat (limited to 'mcs/class/System/System.Diagnostics/ProcessStartInfo.cs')
-rw-r--r--mcs/class/System/System.Diagnostics/ProcessStartInfo.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcs/class/System/System.Diagnostics/ProcessStartInfo.cs b/mcs/class/System/System.Diagnostics/ProcessStartInfo.cs
index 0c624f532da..621b99041f9 100644
--- a/mcs/class/System/System.Diagnostics/ProcessStartInfo.cs
+++ b/mcs/class/System/System.Diagnostics/ProcessStartInfo.cs
@@ -232,7 +232,7 @@ namespace System.Diagnostics
return(working_directory);
}
set {
- working_directory = value;
+ working_directory = value == null ? String.Empty : value;
}
}
}