projects
/
GitHub
/
LineageOS
/
android_kernel_samsung_universal7580.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b04add9
)
ALSA: hda - Use snprintf() to be safer
author
Takashi Iwai
<tiwai@suse.de>
Wed, 22 Jul 2009 14:02:46 +0000
(16:02 +0200)
committer
Takashi Iwai
<tiwai@suse.de>
Wed, 22 Jul 2009 14:02:46 +0000
(16:02 +0200)
Use snprint() for creating the jack name string instead of sprintf()
in patch_sigmatel.c.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/pci/hda/patch_sigmatel.c
patch
|
blob
|
blame
|
history
diff --git
a/sound/pci/hda/patch_sigmatel.c
b/sound/pci/hda/patch_sigmatel.c
index da7f9f65c04781ab0577cf62af8a05a006909126..512f3b9b9a459e27450efad9cb8c875823a99496 100644
(file)
--- a/
sound/pci/hda/patch_sigmatel.c
+++ b/
sound/pci/hda/patch_sigmatel.c
@@
-4066,7
+4066,7
@@
static int stac92xx_add_jack(struct hda_codec *codec,
jack->nid = nid;
jack->type = type;
- s
printf(name
, "%s at %s %s Jack",
+ s
nprintf(name, sizeof(name)
, "%s at %s %s Jack",
snd_hda_get_jack_type(def_conf),
snd_hda_get_jack_connectivity(def_conf),
snd_hda_get_jack_location(def_conf));