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 'ubifs-for-linus-6.13-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs

Pull jffs2 fix from Richard Weinberger:

- Fixup rtime compressor bounds checking

* tag 'ubifs-for-linus-6.13-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs:
jffs2: Fix rtime decompressor

+1 -1
+1 -1
fs/jffs2/compr_rtime.c
··· 95 95 96 96 positions[value]=outpos; 97 97 if (repeat) { 98 - if ((outpos + repeat) >= destlen) { 98 + if ((outpos + repeat) > destlen) { 99 99 return 1; 100 100 } 101 101 if (backoffs + repeat >= outpos) {