mirror of https://github.com/quasar/Quasar.git
Improved null-check in SurveillanceHandler
This commit is contained in:
parent
c5efc87f46
commit
7e46f3ccdc
|
@ -62,7 +62,7 @@ public static void HandleGetProcessesResponse(Client client, GetProcessesRespons
|
|||
{
|
||||
if (packet.IDs[i] != 0 && packet.Processes[i] != "System.exe")
|
||||
{
|
||||
if (client.Value.FrmTm == null)
|
||||
if (client.Value != null && client.Value.FrmTm != null)
|
||||
break;
|
||||
|
||||
ListViewItem lvi =
|
||||
|
|
Loading…
Reference in New Issue