Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e1517c00 authored by Michael Hennerich's avatar Michael Hennerich Committed by Greg Kroah-Hartman
Browse files

staging: iio: adc: max1363: prevent buffer overflow



ring->access.read_last() reads the entire datum from
the ring including padding and time stamp.

Acked-by: default avatarJonathan Cameron <jic23@cam.ac.uk>
Signed-off-by: default avatarMichael Hennerich <michael.hennerich@analog.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 858f1ccf
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -38,9 +38,8 @@ int max1363_single_channel_from_ring(long mask, struct max1363_state *st)
		ret = -EBUSY;
		goto error_ret;
	}
	numvals = hweight_long(st->current_mode->modemask);

	ring_data = kmalloc(numvals*2, GFP_KERNEL);
	ring_data = kmalloc(ring->access.get_bytes_per_datum(ring), GFP_KERNEL);
	if (ring_data == NULL) {
		ret = -ENOMEM;
		goto error_ret;