* [PATCH] add create_proc_entry check to videodev.c (245ac16)
@ 2001-06-24 21:39 Rasmus Andersen
0 siblings, 0 replies; only message in thread
From: Rasmus Andersen @ 2001-06-24 21:39 UTC (permalink / raw)
To: alan; +Cc: linux-kernel
Hi.
The patch below adds a check for create_proc_entry return code
in drivers/media/video/videodev.c. It applies against 245-ac16
and 246p6.
--- linux-245-ac16-clean/drivers/media/video/videodev.c Sun May 27 22:15:23 2001
+++ linux-245-ac16/drivers/media/video/videodev.c Sun Jun 24 23:33:36 2001
@@ -373,6 +373,8 @@
return;
p = create_proc_entry(name, S_IFREG|S_IRUGO|S_IWUSR, video_dev_proc_entry);
+ if (!p)
+ return;
p->data = vfd;
p->read_proc = videodev_proc_read;
--
Regards,
Rasmus(rasmus@jaquet.dk)
Genius may have its limitations, but stupidity is not thus handicapped.
-- Elbert Hubbard
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2001-06-24 21:39 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2001-06-24 21:39 [PATCH] add create_proc_entry check to videodev.c (245ac16) Rasmus Andersen
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox