ecore_con: resolve the possible read of uninitalized data.

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

View File

@ -118,7 +118,7 @@ _efl_net_server_tcp_resolved(void *data, const char *host EINA_UNUSED, const cha
Eo *o = data;
Efl_Net_Server_Tcp_Data *pd = efl_data_scope_get(o, MY_CLASS);
const struct addrinfo *addr;
Eina_Error err;
Eina_Error err = EINA_ERROR_NO_ERROR;
pd->resolver = NULL;