projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b633c6d
)
V4L/DVB (4166): Fix string length
author
Manu Abraham
<abraham.manu@gmail.com>
Wed, 21 Jun 2006 13:27:57 +0000
(10:27 -0300)
committer
Mauro Carvalho Chehab
<mchehab@infradead.org>
Sun, 25 Jun 2006 05:05:17 +0000
(
02:05
-0300)
Signed-off-by: Manu Abraham <manu@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
drivers/media/dvb/bt8xx/dst.c
patch
|
blob
|
history
diff --git
a/drivers/media/dvb/bt8xx/dst.c
b/drivers/media/dvb/bt8xx/dst.c
index 52cbe150077dfe675343b323379fcf647aec24e4..68db48bf89f48127fa3230c7fdd0176773980e2e 100644
(file)
--- a/
drivers/media/dvb/bt8xx/dst.c
+++ b/
drivers/media/dvb/bt8xx/dst.c
@@
-825,7
+825,7
@@
static int dst_card_type(struct dst_state *state)
return -1;
}
memset(&state->card_info, '\0', 8);
- memcpy(&state->card_info, &state->rxbuffer,
8
);
+ memcpy(&state->card_info, &state->rxbuffer,
7
);
dprintk(verbose, DST_ERROR, 1, "Device Model=[%s]", &state->card_info[0]);
return 0;
@@
-840,7
+840,7
@@
static int dst_get_vendor(struct dst_state *state)
return -1;
}
memset(&state->vendor, '\0', 8);
- memcpy(&state->vendor, &state->rxbuffer,
8
);
+ memcpy(&state->vendor, &state->rxbuffer,
7
);
dprintk(verbose, DST_ERROR, 1, "Vendor=[%s]", &state->vendor[0]);
return 0;