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 git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6

* git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6:
Cannot allocate memory error on mount
[CIFS] Eliminate unused variable warning

+3 -2
+1 -1
fs/cifs/inode.c
··· 834 834 xid, NULL); 835 835 836 836 if (!inode) 837 - return ERR_PTR(-ENOMEM); 837 + return ERR_PTR(rc); 838 838 839 839 #ifdef CONFIG_CIFS_FSCACHE 840 840 /* populate tcon->resource_id */
+2 -1
fs/cifs/sess.c
··· 620 620 struct key *spnego_key = NULL; 621 621 __le32 phase = NtLmNegotiate; /* NTLMSSP, if needed, is multistage */ 622 622 bool first_time; 623 - char *ntlmsspblob; 624 623 625 624 if (ses == NULL) 626 625 return -EINVAL; ··· 867 868 iov[1].iov_base = &pSMB->req.SecurityBlob[0]; 868 869 } else if (phase == NtLmAuthenticate) { 869 870 int blob_len; 871 + char *ntlmsspblob; 872 + 870 873 ntlmsspblob = kmalloc(5 * 871 874 sizeof(struct _AUTHENTICATE_MESSAGE), 872 875 GFP_KERNEL);