ecore_con: resolve the possible read of uninitialized data.

Signed-Off-By: JongMin Lee<jm105.lee@samsung.com>
This commit is contained in:
Hermet Park 2018-04-05 15:20:14 +09:00
parent ec7bcc79e7
commit 32bbf68f08
1 changed files with 1 additions and 1 deletions

View File

@ -196,7 +196,7 @@ _efl_net_dialer_udp_resolved(void *data, const char *host EINA_UNUSED, const cha
{
Eo *o = data;
Efl_Net_Dialer_Udp_Data *pd = efl_data_scope_get(o, MY_CLASS);
Eina_Error err;
Eina_Error err = EINA_ERROR_NO_ERROR;
struct addrinfo *addr;
pd->resolver.thread = NULL;