We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3f8f07 commit a6c6888Copy full SHA for a6c6888
src/SOS/SOS.Hosting/RuntimeWrapper.cs
@@ -156,6 +156,19 @@ protected override void Destroy()
156
ComWrapper.ReleaseWithCheck(_cdacDataProcess);
157
_cdacDataProcess = IntPtr.Zero;
158
}
159
+ if (_dacHandle != IntPtr.Zero)
160
+ {
161
+ _dacHandle = IntPtr.Zero;
162
+ }
163
+ if (_cdacHandle != IntPtr.Zero)
164
165
+ _cdacHandle = IntPtr.Zero;
166
167
+ if (_dbiHandle != IntPtr.Zero)
168
169
+ DataTarget.PlatformFunctions.FreeLibrary(_dbiHandle);
170
+ _dbiHandle = IntPtr.Zero;
171
172
173
174
#region IRuntime (native)
0 commit comments