remove clang warning: better check for whether name field is empty
Этот коммит содержится в:
родитель
c2b788ad50
Коммит
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)
|
||||
{
|
||||
|
Загрузка…
Ссылка в новой задаче
Block a user