浏览代码

asoc: msm_common: Use destination size for strlcpy

Fix compilation error due to strlcpy referring to source size
instead of destination size.

Change-Id: Ifcbb70342cefbeaf77575afd98780cd7fed0fac5
Signed-off-by: Ashish Jain <[email protected]>
Ashish Jain 4 年之前
父节点
当前提交
b1846bb750
共有 1 个文件被更改,包括 5 次插入3 次删除
  1. 5 3
      asoc/msm_common.c

+ 5 - 3
asoc/msm_common.c

@@ -31,6 +31,8 @@
 #define DEVICE_ENABLE 1
 #define DEVICE_DISABLE 0
 
+#define ARRAY_SZ 21
+
 static struct attribute device_state_attr = {
 	.name = "state",
 	.mode = 0660,
@@ -369,15 +371,15 @@ int msm_channel_map_get(struct snd_kcontrol *kcontrol,
 
 void msm_common_get_backend_name(const char *stream_name, char **backend_name)
 {
-	char arg[21] = {0};
+	char arg[ARRAY_SZ] = {0};
 	char value[61] = {0};
 
 	sscanf(stream_name, "%20[^-]-%60s", arg, value);
-	*backend_name = kzalloc(strlen(arg)+1, GFP_KERNEL);
+	*backend_name = kzalloc(ARRAY_SZ, GFP_KERNEL);
 	if (!(*backend_name))
 		return;
 
-	strlcpy(*backend_name, arg, strlen(arg)+1);
+	strlcpy(*backend_name, arg, ARRAY_SZ);
 }
 
 int msm_common_dai_link_init(struct snd_soc_pcm_runtime *rtd)