View | Details | Raw Unified | Return to bug 206259
Collapse All | Expand All

(-)linux-4.19.97/drivers/hid/hid-core.c (-2 / +5 lines)
Lines 290-297 static int hid_add_field(struct hid_pars Link Here
290
290
291
	/* Total size check: Allow for possible report index byte */
291
	/* Total size check: Allow for possible report index byte */
292
	if (report->size > (HID_MAX_BUFFER_SIZE - 1) << 3) {
292
	if (report->size > (HID_MAX_BUFFER_SIZE - 1) << 3) {
293
		hid_err(parser->device, "report is too long\n");
293
		hid_err(parser->device,
294
		return -1;
294
				"report is too long: %d > %d\n",
295
				report->size,
296
				(HID_MAX_BUFFER_SIZE - 1) << 3);
297
		return 0;
295
	}
298
	}
296
299
297
	if (!parser->local.usage_index) /* Ignore padding fields */
300
	if (!parser->local.usage_index) /* Ignore padding fields */

Return to bug 206259