Commit b4ac3c8d authored by Jean Delvare's avatar Jean Delvare Committed by Mauro Carvalho Chehab

V4L/DVB (7924): ivtv/cx18: snprintf fixes

snprinf() takes the trailing \0 into account in its length calculations,
so there is no need to subtract 1 to the buffer size.
Signed-off-by: default avatarJean Delvare <khali@linux-fr.org>
Signed-off-by: default avatarHans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@infradead.org>
parent 54b6550e
...@@ -614,7 +614,7 @@ static int __devinit cx18_probe(struct pci_dev *dev, ...@@ -614,7 +614,7 @@ static int __devinit cx18_probe(struct pci_dev *dev,
cx18_cards[cx18_cards_active] = cx; cx18_cards[cx18_cards_active] = cx;
cx->dev = dev; cx->dev = dev;
cx->num = cx18_cards_active++; cx->num = cx18_cards_active++;
snprintf(cx->name, sizeof(cx->name) - 1, "cx18-%d", cx->num); snprintf(cx->name, sizeof(cx->name), "cx18-%d", cx->num);
CX18_INFO("Initializing card #%d\n", cx->num); CX18_INFO("Initializing card #%d\n", cx->num);
spin_unlock(&cx18_cards_lock); spin_unlock(&cx18_cards_lock);
......
...@@ -1019,7 +1019,7 @@ static int __devinit ivtv_probe(struct pci_dev *dev, ...@@ -1019,7 +1019,7 @@ static int __devinit ivtv_probe(struct pci_dev *dev,
ivtv_cards[ivtv_cards_active] = itv; ivtv_cards[ivtv_cards_active] = itv;
itv->dev = dev; itv->dev = dev;
itv->num = ivtv_cards_active++; itv->num = ivtv_cards_active++;
snprintf(itv->name, sizeof(itv->name) - 1, "ivtv%d", itv->num); snprintf(itv->name, sizeof(itv->name), "ivtv%d", itv->num);
IVTV_INFO("Initializing card #%d\n", itv->num); IVTV_INFO("Initializing card #%d\n", itv->num);
spin_unlock(&ivtv_cards_lock); spin_unlock(&ivtv_cards_lock);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment