remove clang warning: better check for whether name field is empty
This commit is contained in:
bovenliggende
c2b788ad50
commit
4d7bde2773
@ -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)
|
||||
{
|
||||
|
Laden…
Verwijs in nieuw issue
Block a user