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 'vfs-6.16-rc8.fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/vfs/vfs

Pull vfs fixes from Christian Brauner:
"Two last-minute fixes for this cycle:

- Set afs vllist to NULL if addr parsing fails

- Add a missing check for reaching the end of the string in afs"

* tag 'vfs-6.16-rc8.fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/vfs/vfs:
afs: Set vllist to NULL if addr parsing fails
afs: Fix check for NULL terminator

+2 -1
+1 -1
fs/afs/addr_prefs.c
··· 48 48 strv[count++] = p; 49 49 50 50 /* Skip over word */ 51 - while (!isspace(*p)) 51 + while (!isspace(*p) && *p) 52 52 p++; 53 53 if (!*p) 54 54 break;
+1
fs/afs/cell.c
··· 177 177 VL_SERVICE, AFS_VL_PORT); 178 178 if (IS_ERR(vllist)) { 179 179 ret = PTR_ERR(vllist); 180 + vllist = NULL; 180 181 goto parse_failed; 181 182 } 182 183