Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'fsnotify_for_v6.14-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs

Pull inotify update from Jan Kara:
"A small inotify strcpy() cleanup"

* tag 'fsnotify_for_v6.14-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs:
inotify: Use strscpy() for event->name copies

+1 -1
+1 -1
fs/notify/inotify/inotify_fsnotify.c
··· 121 121 event->sync_cookie = cookie; 122 122 event->name_len = len; 123 123 if (len) 124 - strcpy(event->name, name->name); 124 + strscpy(event->name, name->name, event->name_len + 1); 125 125 126 126 ret = fsnotify_add_event(group, fsn_event, inotify_merge); 127 127 if (ret) {