V4L/DVB (11991): buf-core.c: add pointer check
authorFigo.zhang <figo1802@gmail.com>
Wed, 3 Jun 2009 02:01:04 +0000 (23:01 -0300)
committerMauro Carvalho Chehab <mchehab@redhat.com>
Tue, 16 Jun 2009 22:07:51 +0000 (19:07 -0300)
add poiter check for videobuf_queue_core_init().

any guys who write a v4l driver, pass a NULL pointer or a non-inintial
pointer to the first parameter such as videobuf_queue_sg_init() , it
would be crashed.

Signed-off-by: Figo.zhang <figo1802@gmail.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
drivers/media/video/videobuf-core.c

index 48c3ebdb415ffaf8d85856725ea907b63d7df643..f1ccf98c0a6f071d287a066a2902c4783b3675fd 100644 (file)
@@ -118,6 +118,7 @@ void videobuf_queue_core_init(struct videobuf_queue *q,
                         void *priv,
                         struct videobuf_qtype_ops *int_ops)
 {
+       BUG_ON(!q);
        memset(q, 0, sizeof(*q));
        q->irqlock   = irqlock;
        q->dev       = dev;