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 'nfsd-4.8-2' of git://linux-nfs.org/~bfields/linux

Pull nfsd bugfix from Bruce Fields:
"Fix a memory corruption bug that I introduced in 4.7"

* tag 'nfsd-4.8-2' of git://linux-nfs.org/~bfields/linux:
svcauth_gss: Revert 64c59a3726f2 ("Remove unnecessary allocation")

+3 -2
+3 -2
net/sunrpc/auth_gss/svcauth_gss.c
··· 569 569 struct rsc *found; 570 570 571 571 memset(&rsci, 0, sizeof(rsci)); 572 - rsci.handle.data = handle->data; 573 - rsci.handle.len = handle->len; 572 + if (dup_to_netobj(&rsci.handle, handle->data, handle->len)) 573 + return NULL; 574 574 found = rsc_lookup(cd, &rsci); 575 + rsc_free(&rsci); 575 576 if (!found) 576 577 return NULL; 577 578 if (cache_check(cd, &found->h, NULL))