Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
1147e4a7
Commit
1147e4a7
authored
May 11, 2004
by
Steve French
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix oops when smb buffer can not be allocated
parent
c1ca0f91
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
fs/cifs/CHANGES
fs/cifs/CHANGES
+1
-1
fs/cifs/cifssmb.c
fs/cifs/cifssmb.c
+1
-1
No files found.
fs/cifs/CHANGES
View file @
1147e4a7
Version 1.14
------------
Fix incomplete listings of large directories on Samba servers when Unix
extensions enabled.
extensions enabled.
Fix oops when smb_buffer can not be allocated
Version 1.13
------------
...
...
fs/cifs/cifssmb.c
View file @
1147e4a7
...
...
@@ -143,7 +143,7 @@ smb_init(int smb_command, int wct, struct cifsTconInfo *tcon,
return
rc
;
*
request_buf
=
cifs_buf_get
();
if
(
request_buf
==
0
)
{
if
(
*
request_buf
==
0
)
{
return
-
ENOMEM
;
}
/* Although the original thought was we needed the response buf for */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment