|
@@ -2552,8 +2552,9 @@ int snd_soc_info_enum_double(struct snd_kcontrol *kcontrol,
|
|
|
|
|
|
if (uinfo->value.enumerated.item > e->max - 1)
|
|
|
uinfo->value.enumerated.item = e->max - 1;
|
|
|
- strcpy(uinfo->value.enumerated.name,
|
|
|
- e->texts[uinfo->value.enumerated.item]);
|
|
|
+ strlcpy(uinfo->value.enumerated.name,
|
|
|
+ e->texts[uinfo->value.enumerated.item],
|
|
|
+ sizeof(uinfo->value.enumerated.name));
|
|
|
return 0;
|
|
|
}
|
|
|
EXPORT_SYMBOL_GPL(snd_soc_info_enum_double);
|