]> Git Repo - linux.git/commitdiff
n_gsm: gsm_data_alloc buffer allocation could fail and it is not being checked
authorKen Mills <[email protected]>
Mon, 13 Dec 2010 15:28:03 +0000 (15:28 +0000)
committerGreg Kroah-Hartman <[email protected]>
Thu, 16 Dec 2010 21:03:13 +0000 (13:03 -0800)
gsm_data_alloc buffer allocation could fail and it is not being checked.

Add check for allocated buffer and return if the buffer allocation
fails.

Signed-off-by: Ken Mills <[email protected]>
Signed-off-by: Alan Cox <[email protected]>
Cc: [email protected]
Signed-off-by: Greg Kroah-Hartman <[email protected]>
drivers/tty/n_gsm.c

index 2fc5cf27152a23d975f26ec9fac2a143aa220ead..c5f8e5bda2b29c4606f3245ba9388f943d3f2147 100644 (file)
@@ -968,6 +968,8 @@ static void gsm_control_reply(struct gsm_mux *gsm, int cmd, u8 *data,
 {
        struct gsm_msg *msg;
        msg = gsm_data_alloc(gsm, 0, dlen + 2, gsm->ftype);
+       if (msg == NULL)
+               return;
        msg->data[0] = (cmd & 0xFE) << 1 | EA;  /* Clear C/R */
        msg->data[1] = (dlen << 1) | EA;
        memcpy(msg->data + 2, data, dlen);
This page took 0.056068 seconds and 4 git commands to generate.