]> git.hungrycats.org Git - linux/commitdiff
[PATCH] kbuild: fixdep segfault on pathological string-o-death
authorAndy Green <andy@warmcat.com>
Wed, 2 May 2007 19:48:37 +0000 (21:48 +0200)
committerChris Wright <chrisw@sous-sol.org>
Wed, 23 May 2007 21:32:42 +0000 (14:32 -0700)
build scripts: fixdep blows segfault on string CONFIG_MODULE seen

The string "CONFIG_MODULE" appearing anywhere in a source file causes
fixdep to segfault.  This string appeared in the wild in the current
mISDN sources (I think they meant CONFIG_MODULES).  But it shouldn't
segfault (esp as CONFIG_MODULE appeared in a quoted string).

Signed-off-by: Andy Green <andy@warmcat.com>
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Signed-off-by: Chris Wright <chrisw@sous-sol.org>
scripts/basic/fixdep.c

index 6bc7e7cfccf64a6c600ac4251dace743985eb3b4..8912c0f5460b502f4bb3568dea39f09af5b438d3 100644 (file)
@@ -249,6 +249,8 @@ void parse_config_file(char *map, size_t len)
        found:
                if (!memcmp(q - 7, "_MODULE", 7))
                        q -= 7;
+               if( (q-p-7) < 0 )
+                       continue;
                use_config(p+7, q-p-7);
        }
 }