You've already forked linux-rockchip
mirror of
https://github.com/armbian/linux-rockchip.git
synced 2026-01-06 11:08:10 -08:00
media: hdpvr: fix error value returns in hdpvr_read
[ Upstream commit359c27c6dd] Error return values are supposed to be negative in hdpvr_read. Most error returns are currently handled via an unsigned integer "ret". When setting a negative error value to "ret", the value actually becomes a large positive value, because "ret" is unsigned. Later on, the "ret" value is returned. But as ssize_t is a 64-bit signed number, the error return value stays a large positive integer instead of a negative integer. This can cause an error value to be interpreted as the read size, which can cause a buffer overread for applications relying on the returned size. Fixes:9aba42efe8("V4L/DVB (11096): V4L2 Driver for the Hauppauge HD PVR usb capture device") Signed-off-by: Niels Dossche <dossche.niels@gmail.com> Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
f57699a9b6
commit
bb480bffc1
@@ -409,7 +409,7 @@ static ssize_t hdpvr_read(struct file *file, char __user *buffer, size_t count,
|
||||
struct hdpvr_device *dev = video_drvdata(file);
|
||||
struct hdpvr_buffer *buf = NULL;
|
||||
struct urb *urb;
|
||||
unsigned int ret = 0;
|
||||
int ret = 0;
|
||||
int rem, cnt;
|
||||
|
||||
if (*pos)
|
||||
|
||||
Reference in New Issue
Block a user