summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfcolin2012-03-18 17:30:20 +0000
committerfcolin2012-03-18 17:30:20 +0000
commitb024dc7df702b3beddf23d815a96501161bad13c (patch)
treeebec7664f5e45c3bfb0542df5982cc5ccf62bf15
parent80414ffe1788a8b9de18e38734544173db902015 (diff)
downloadivy-csharp-b024dc7df702b3beddf23d815a96501161bad13c.zip
ivy-csharp-b024dc7df702b3beddf23d815a96501161bad13c.tar.gz
ivy-csharp-b024dc7df702b3beddf23d815a96501161bad13c.tar.bz2
ivy-csharp-b024dc7df702b3beddf23d815a96501161bad13c.tar.xz
Dispose rules detected by VS2011
-rw-r--r--IvyControl/IvyControl.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/IvyControl/IvyControl.cs b/IvyControl/IvyControl.cs
index 47dfd8c..b7f8b9b 100644
--- a/IvyControl/IvyControl.cs
+++ b/IvyControl/IvyControl.cs
@@ -341,6 +341,7 @@ namespace IvyBus
if (disposing && ivy != null )
{
ivy.Stop();
+ ivy.Dispose();
}
}
finally