Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 04c58f81 authored by Andy Green's avatar Andy Green Committed by Sam Ravnborg
Browse files

kbuild: scripts/basic/fixdep segfault on pathological string-o-death



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: default avatarAndy Green <andy@warmcat.com>
Signed-off-by: default avatarSam Ravnborg <sam@ravnborg.org>
parent 1e093ecd
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -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);
	}
}