Commit 7f5726e7 authored by Nate Weibley's avatar Nate Weibley

Check for socket nullptr in UDPLink::writeBytes

parent 1d0bf627
......@@ -149,6 +149,9 @@ void UDPLink::removeHost(const QString& host)
void UDPLink::writeBytes(const QByteArray data)
{
if (!_socket)
return;
QStringList goneHosts;
// Send to all connected systems
QString host;
......
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