Unverified Commit 088dc4aa authored by openeuler-ci-bot's avatar openeuler-ci-bot Committed by Gitee
Browse files

!14116 media: uvcvideo: Skip parsing frames of type UVC_VS_UNDEFINED in uvc_parse_format

parents e416567e 79178319
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -575,7 +575,7 @@ static int uvc_parse_format(struct uvc_device *dev,
	/* Parse the frame descriptors. Only uncompressed, MJPEG and frame
	 * based formats have frame descriptors.
	 */
	while (buflen > 2 && buffer[1] == USB_DT_CS_INTERFACE &&
	while (ftype && buflen > 2 && buffer[1] == USB_DT_CS_INTERFACE &&
	       buffer[2] == ftype) {
		frame = &format->frame[format->nframes];
		if (ftype != UVC_VS_FRAME_FRAME_BASED)