kbuild: fix module.symvers parsing in modpost

read_dump didn't split lines between module name and export type.

Signed-off-by: Laurent Riffard <laurent.riffard@free.fr>
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
This commit is contained in:
Laurent Riffard 2006-06-11 08:02:06 +02:00 committed by Sam Ravnborg
parent 566f81ca59
commit 9ac545b0f7
1 changed files with 1 additions and 1 deletions

View File

@ -1289,7 +1289,7 @@ static void read_dump(const char *fname, unsigned int kernel)
if (!(modname = strchr(symname, '\t')))
goto fail;
*modname++ = '\0';
if (!(export = strchr(modname, '\t')))
if ((export = strchr(modname, '\t')) != NULL)
*export++ = '\0';
crc = strtoul(line, &d, 16);