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>2004-03-23 00:55:44 +0300
committerGonzalo Paniagua Javier <gonzalo.mono@gmail.com>2004-03-23 00:55:44 +0300
commit799e70ce7ebb8f45fe02b054b4f79bfb9c9a1d45 (patch)
tree54e0a3edc368bd976f7428875e42d5e998c6aae1 /mcs/class/System/System.Diagnostics
parentf7bff4ab5d7c11b0370164e9781efa816464ea80 (diff)
Don't dispose the handler
svn path=/trunk/mcs/; revision=24441
Diffstat (limited to 'mcs/class/System/System.Diagnostics')
-rwxr-xr-xmcs/class/System/System.Diagnostics/Process.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/mcs/class/System/System.Diagnostics/Process.cs b/mcs/class/System/System.Diagnostics/Process.cs
index 70d150b6657..83a18fe744c 100755
--- a/mcs/class/System/System.Diagnostics/Process.cs
+++ b/mcs/class/System/System.Diagnostics/Process.cs
@@ -875,6 +875,11 @@ namespace System.Diagnostics {
{
Handle = handle;
}
+
+ protected override void Dispose (bool explicitDisposing)
+ {
+ // Do nothing, we don't own the handle and we won't close it.
+ }
}
}
}