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 '6.6-rc1-ksmbd' of git://git.samba.org/ksmbd

Pull smb server fixes from Steve French:
"Two ksmbd server fixes"

* tag '6.6-rc1-ksmbd' of git://git.samba.org/ksmbd:
ksmbd: fix passing freed memory 'aux_payload_buf'
ksmbd: remove unneeded mark_inode_dirty in set_info_sec()

+1 -2
+1 -1
fs/smb/server/smb2pdu.c
··· 6312 6312 aux_payload_buf, 6313 6313 nbytes); 6314 6314 kvfree(aux_payload_buf); 6315 - 6315 + aux_payload_buf = NULL; 6316 6316 nbytes = 0; 6317 6317 if (remain_bytes < 0) { 6318 6318 err = (int)remain_bytes;
-1
fs/smb/server/smbacl.c
··· 1420 1420 out: 1421 1421 posix_acl_release(fattr.cf_acls); 1422 1422 posix_acl_release(fattr.cf_dacls); 1423 - mark_inode_dirty(inode); 1424 1423 return rc; 1425 1424 } 1426 1425