Initialize 'buf' to NULL (to avoid compiler warning)

Signed-off-by: Chris Michael <devilhorns@comcast.net>
This commit is contained in:
Chris Michael 2013-07-08 16:08:14 +01:00
parent a144495daa
commit 1debfc141a
1 changed files with 1 additions and 1 deletions

View File

@ -1402,7 +1402,7 @@ _ecore_ipc_event_server_data(void *data EINA_UNUSED, int ev_type EINA_UNUSED, vo
Ecore_Ipc_Server *svr;
Ecore_Ipc_Msg_Head msg;
int offset = 0;
unsigned char *buf;
unsigned char *buf = NULL;
svr = ecore_con_server_data_get(e->server);