ecore_con: add null check for safety.

This commit is contained in:
Hermet Park 2021-03-16 10:28:27 +09:00
parent 046c5cd58e
commit b9b2b72205
1 changed files with 1 additions and 0 deletions

View File

@ -94,6 +94,7 @@ _efl_net_dialer_unix_connected(void *data, const struct sockaddr *addr, socklen_
{
Eo *o = data;
Efl_Net_Dialer_Unix_Data *pd = efl_data_scope_get(o, MY_CLASS);
if (!pd) return;
pd->connect.thread = NULL;