mirror of
https://github.com/adulau/aha.git
synced 2024-12-30 20:56:23 +00:00
V4L/DVB (3967): Pwc-dec23 oops fix
drivers/media/video/pwc/pwc-dec23.c: In function `pwc_dec23_decompress': drivers/media/video/pwc/pwc-dec23.c:885: warning: null argument where non-null required (arg 2) Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
This commit is contained in:
parent
18232ca61b
commit
7923dee035
1 changed files with 1 additions and 1 deletions
|
@ -882,7 +882,7 @@ void pwc_dec23_decompress(const struct pwc_device *pwc,
|
|||
|
||||
}
|
||||
#else
|
||||
memcpy(dst, 0, pwc->view.x * pwc->view.y);
|
||||
memset(dst, 0, pwc->view.x * pwc->view.y);
|
||||
#endif
|
||||
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue