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 87a7956 commit 1aef4b1Copy full SHA for 1aef4b1
Hardware/InterfaceManagerZeroConf.cs
@@ -1,4 +1,4 @@
1
-using System;
+using System;
2
using System.Collections.Generic;
3
using System.Linq;
4
using System.Text;
@@ -132,7 +132,9 @@ public override void PollDevice()
132
public void Destroy()
133
{
134
pollThreadRunning = false;
135
- pollThread.Join(1000);
+ if(pollThread != null)
136
+ pollThread.Join(1000);
137
+
138
}
139
140
private void OnInterfaceDisconnect(SmartScopeInterfaceEthernet hardwareInterface)
0 commit comments