remove clang warning: better check for whether name field is empty

Este commit está contenido en:
Albert S. 2017-08-12 16:10:47 +02:00
padre c2b788ad50
commit 4d7bde2773
Se han modificado 1 ficheros con 1 adiciones y 1 borrados

Ver fichero

@ -374,7 +374,7 @@ char *get_eventfile_abspath(struct inotify_event *event)
}
char *result = NULL;
if(event->name != NULL && *event->name != 0)
if((event->len) > 0 )
{
if(asprintf(&result, "%s/%s", wdpath, event->name) == -1)
{