V4L/DVB (7306): pvrusb2: Fix oops possible when claiming a NULL stream
Signed-off-by: Mike Isely <isely@pobox.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
This commit is contained in:
committed by
Mauro Carvalho Chehab
parent
7f421fe475
commit
99a6acf9a7
@@ -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;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user