Merge "ASoC: wcd9360-dsp-cntl: Limit array size of val"

Este commit está contenido en:
Linux Build Service Account
2018-03-21 01:40:51 -07:00
cometido por Gerrit - the friendly Code Review server
Se han modificado 2 ficheros con 5 adiciones y 4 borrados

Ver fichero

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2016-2017, The Linux Foundation. All rights reserved.
* Copyright (c) 2016-2018, The Linux Foundation. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 and
@@ -1007,7 +1007,7 @@ static ssize_t wcd_miscdev_write(struct file *filep, const char __user *ubuf,
{
struct wcd_dsp_cntl *cntl = container_of(filep->private_data,
struct wcd_dsp_cntl, miscdev);
char val[count];
char val[WCD_MISCDEV_CMD_MAX_LEN];
bool vote;
int ret = 0;

Ver fichero

@@ -31,6 +31,7 @@
#define WCD_PROCFS_ENTRY_MAX_LEN 16
#define WCD_9360_RAMDUMP_START_ADDR 0x20100000
#define WCD_9360_RAMDUMP_SIZE ((1024 * 1024) - 128)
#define WCD_MISCDEV_CMD_MAX_LEN 2
#define WCD_CNTL_MUTEX_LOCK(codec, lock) \
{ \
@@ -893,11 +894,11 @@ static ssize_t wcd_miscdev_write(struct file *filep, const char __user *ubuf,
{
struct wcd_dsp_cntl *cntl = container_of(filep->private_data,
struct wcd_dsp_cntl, miscdev);
char val[count];
char val[WCD_MISCDEV_CMD_MAX_LEN];
bool vote;
int ret = 0;
if (count == 0 || count > 2) {
if (count == 0 || count > WCD_MISCDEV_CMD_MAX_LEN) {
pr_err("%s: Invalid count = %zd\n", __func__, count);
ret = -EINVAL;
goto done;