Commit 99a6acf9 authored by Mike Isely's avatar Mike Isely Committed by Mauro Carvalho Chehab
Browse files

V4L/DVB (7306): pvrusb2: Fix oops possible when claiming a NULL stream

parent 7f421fe4
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -173,7 +173,7 @@ int pvr2_channel_claim_stream(struct pvr2_channel *cp,
	int code = 0;
	int code = 0;
	pvr2_context_enter(cp->mc_head); do {
	pvr2_context_enter(cp->mc_head); do {
		if (sp == cp->stream) break;
		if (sp == cp->stream) break;
		if (sp->user) {
		if (sp && sp->user) {
			code = -EBUSY;
			code = -EBUSY;
			break;
			break;
		}
		}