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:
parent
7f421fe475
commit
99a6acf9a7
1 changed files with 1 additions and 1 deletions
|
@ -173,7 +173,7 @@ int pvr2_channel_claim_stream(struct pvr2_channel *cp,
|
|||
int code = 0;
|
||||
pvr2_context_enter(cp->mc_head); do {
|
||||
if (sp == cp->stream) break;
|
||||
if (sp->user) {
|
||||
if (sp && sp->user) {
|
||||
code = -EBUSY;
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue