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 'v7.0-rc6-smb3-client-fix' of git://git.samba.org/sfrench/cifs-2.6

Pull smb client fix from Steve French:

- Fix potential out of bounds read in mount

* tag 'v7.0-rc6-smb3-client-fix' of git://git.samba.org/sfrench/cifs-2.6:
fs/smb/client: fix out-of-bounds read in cifs_sanitize_prepath

+4
+4
fs/smb/client/fs_context.c
··· 588 588 while (IS_DELIM(*cursor1)) 589 589 cursor1++; 590 590 591 + /* exit in case of only delimiters */ 592 + if (!*cursor1) 593 + return NULL; 594 + 591 595 /* copy the first letter */ 592 596 *cursor2 = *cursor1; 593 597