From: Yury Umanets <torque@ukrpost.net>
To: Andrew Morton <akpm@osdl.org>
Cc: linux-kernel@vger.kernel.org
Subject: [PATCH] 2.6.6 memory allocation checks in cifs_parse_mount_options()
Date: Sun, 06 Jun 2004 19:03:16 +0300 [thread overview]
Message-ID: <1086537787.2793.61.camel@firefly> (raw)
Adds memory allocation checks in cifs_parse_mount_options().
./linux-2.6.6-modified/fs/cifs/connect.c | 4 ++++
1 files changed, 4 insertions(+)
Signed-off-by: Yury Umanets <torque@ukrpost.net>
diff -rupN ./linux-2.6.6/fs/cifs/connect.c
./linux-2.6.6-modified/fs/cifs/connect.c
--- ./linux-2.6.6/fs/cifs/connect.c Mon May 10 05:33:19 2004
+++ ./linux-2.6.6-modified/fs/cifs/connect.c Wed Jun 2 14:36:40 2004
@@ -587,6 +587,8 @@ cifs_parse_mount_options(char *options,
}
if ((temp_len = strnlen(value, 300)) < 300) {
vol->UNC = kmalloc(temp_len+1,GFP_KERNEL);
+ if (!vol->UNC)
+ return 1;
strcpy(vol->UNC,value);
if (strncmp(vol->UNC, "//", 2) == 0) {
vol->UNC[0] = '\\';
@@ -727,6 +729,8 @@ cifs_parse_mount_options(char *options,
}
if ((temp_len = strnlen(devname, 300)) < 300) {
vol->UNC = kmalloc(temp_len+1,GFP_KERNEL);
+ if (!vol->UNC)
+ return 1;
strcpy(vol->UNC,devname);
if (strncmp(vol->UNC, "//", 2) == 0) {
vol->UNC[0] = '\\';
--
umka
--
umka
reply other threads:[~2004-06-06 16:02 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1086537787.2793.61.camel@firefly \
--to=torque@ukrpost.net \
--cc=akpm@osdl.org \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox