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 branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/ryusuke/nilfs2

* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/ryusuke/nilfs2:
nilfs2: fix memory leak in nilfs_ioctl_clean_segments

+1 -1
+1 -1
fs/nilfs2/ioctl.c
··· 576 576 ret = nilfs_clean_segments(inode->i_sb, argv, kbufs); 577 577 578 578 out_free: 579 - while (--n > 0) 579 + while (--n >= 0) 580 580 vfree(kbufs[n]); 581 581 kfree(kbufs[4]); 582 582 return ret;