All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] [DOCBOOK] fix segfault in docproc.c
@ 2006-08-21 18:34 Henne
  2006-08-21 20:35 ` Randy.Dunlap
  0 siblings, 1 reply; 2+ messages in thread
From: Henne @ 2006-08-21 18:34 UTC (permalink / raw)
  To: akpm; +Cc: linux-kernel

From: Henrik Kretzschmar <henne@nachtwindheim.de>

Adds a missing exit, if the file that should be parsed couldn't be opened.
Without it crashes with a segfault, cause the filedescriptor is accessed even if the file could not be opened.
This error happens on 2.6.18-rc4-mm[12] when executing make xmldocs.

Signed-off-by: Henrik Kretzschmar <henne@nachtwindheim.de>
---

--- linux-2.6.18-rc4/scripts/basic/docproc.c	2006-06-18 03:49:35.000000000 +0200
+++ linux/scripts/basic/docproc.c	2006-08-18 22:19:48.000000000 +0200
@@ -177,6 +177,7 @@
 		{
 			fprintf(stderr, "docproc: ");
 			perror(real_filename);
+			exit(1);
 		}
 		while(fgets(line, MAXLINESZ, fp)) {
 			char *p;



^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2006-08-21 20:32 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-08-21 18:34 [PATCH] [DOCBOOK] fix segfault in docproc.c Henne
2006-08-21 20:35 ` Randy.Dunlap

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.