Skip to content

Commit

Permalink
Merge pull request #266 from Sunrisepeak/sunrisepeak-patch-fwatcher
Browse files Browse the repository at this point in the history
bugfix: fwatcher: fix recursion detect issue for linux platform
  • Loading branch information
waruqi authored Sep 22, 2024
2 parents 3231280 + 49e71d4 commit f815e56
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/tbox/platform/bsd/fwatcher_kqueue.c
Original file line number Diff line number Diff line change
Expand Up @@ -304,8 +304,8 @@ tb_bool_t tb_fwatcher_add(tb_fwatcher_ref_t self, tb_char_t const* watchdir, tb_
return tb_false;

// is directory? we need scan it and add all subfiles
if (info.type == TB_FILE_TYPE_DIRECTORY)
tb_directory_walk(watchdir, recursion? -1 : 0, tb_true, tb_fwatcher_add_watch_filedirs, fwatcher);
if (info.type == TB_FILE_TYPE_DIRECTORY && recursion)
tb_directory_walk(watchdir, -1, tb_true, tb_fwatcher_add_watch_filedirs, fwatcher);
return tb_fwatcher_add_watch(fwatcher, watchdir, recursion);
}

Expand Down
2 changes: 1 addition & 1 deletion src/tbox/platform/linux/fwatcher_inotify.c
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ tb_bool_t tb_fwatcher_add(tb_fwatcher_ref_t self, tb_char_t const* watchdir, tb_

// is directory? we need scan it and add all subdirs
if (info.type == TB_FILE_TYPE_DIRECTORY && recursion)
tb_directory_walk(watchdir, 0, tb_true, tb_fwatcher_add_watch_dirs, fwatcher);
tb_directory_walk(watchdir, -1, tb_true, tb_fwatcher_add_watch_dirs, fwatcher);
return tb_fwatcher_add_watch(fwatcher, watchdir, recursion);
}

Expand Down

0 comments on commit f815e56

Please sign in to comment.