mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-09-18 22:14:16 +00:00
modpost: trim leading spaces when processing source files list
get_line() does not trim the leading spaces, but the
parse_source_files() expects to get lines with source files paths where
the first space occurs after the file path.
Fixes: 70f30cfe5b
("modpost: use read_text_file() and get_line() for reading text files")
Signed-off-by: Radek Krejci <radek.krejci@oracle.com>
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
This commit is contained in:
parent
dae4a0171e
commit
5d9a16b2a4
1 changed files with 6 additions and 1 deletions
|
@ -326,7 +326,12 @@ static int parse_source_files(const char *objfile, struct md4_ctx *md)
|
||||||
|
|
||||||
/* Sum all files in the same dir or subdirs. */
|
/* Sum all files in the same dir or subdirs. */
|
||||||
while ((line = get_line(&pos))) {
|
while ((line = get_line(&pos))) {
|
||||||
char* p = line;
|
char* p;
|
||||||
|
|
||||||
|
/* trim the leading spaces away */
|
||||||
|
while (isspace(*line))
|
||||||
|
line++;
|
||||||
|
p = line;
|
||||||
|
|
||||||
if (strncmp(line, "source_", sizeof("source_")-1) == 0) {
|
if (strncmp(line, "source_", sizeof("source_")-1) == 0) {
|
||||||
p = strrchr(line, ' ');
|
p = strrchr(line, ' ');
|
||||||
|
|
Loading…
Add table
Reference in a new issue