eina: silence gcc warning.

Code is correct and won't lead to a case where size is > 0 and buffer
isn't set, but gcc can't see the relation between both variable.
This commit is contained in:
Cedric BAIL 2017-06-05 11:15:23 -07:00
parent 3d46c390f7
commit e83914d496
1 changed files with 1 additions and 1 deletions

View File

@ -535,7 +535,7 @@ _monitor(void *_data)
// impact the application specifically
for (;session;)
{
unsigned char *buffer;
unsigned char *buffer = NULL;
int size;
size = _packet_receive(session, &buffer);