From: Michael Snyder Date: Mon, 25 Mar 2002 19:47:41 +0000 (+0000) Subject: 2002-03-25 Jeff Law (law@redhat.com) X-Git-Tag: binutils-2_13-branchpoint~1628 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ee677e8d79bc3a816f028ac6ed51f1a2bbc13b96;p=external%2Fbinutils.git 2002-03-25 Jeff Law (law@redhat.com) * linux-proc.c (read_mapping): Scan up to end of line for filename. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 948ecc9..0500e94 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2002-03-25 Jeff Law (law@redhat.com) + + * linux-proc.c (read_mapping): Scan up to end of line for filename. + 2002-03-25 Michal Ludvig * x86-64-tdep.c (x86_64_skip_prologue): Rewritten from scratch. diff --git a/gdb/linux-proc.c b/gdb/linux-proc.c index d6f88d3..832f14e 100644 --- a/gdb/linux-proc.c +++ b/gdb/linux-proc.c @@ -77,7 +77,14 @@ read_mapping (FILE *mapfile, if (ret > 0 && ret != EOF && *inode != 0) { - ret += fscanf (mapfile, "%s\n", filename); + /* Eat everything up to EOL for the filename. This will prevent + weird filenames (such as one with embedded whitespace) from + confusing this code. It also makes this code more robust + in respect to annotations the kernel may add after the + filename. + + Note the filename is used for informational purposes only. */ + ret += fscanf (mapfile, "%[^\n]\n", filename); } else {