Commit e6a850c8 authored by Don Gagne's avatar Don Gagne

Merge pull request #885 from DonLakeFlyer/WindowFlashCrash

Fix Windows Firmware Update crash
parents 3f8fb9d4 55ea7d4d
...@@ -290,7 +290,8 @@ bool UDPLink::disconnect() ...@@ -290,7 +290,8 @@ bool UDPLink::disconnect()
if(socket) if(socket)
{ {
delete socket; // Make sure delete happen on correct thread
socket->deleteLater();
socket = NULL; socket = NULL;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment