ARI fix: "strlen d_name" rule.

* linux-nat.c (linux_nat_xfer_osdata): Use NAMELEN macro.
This commit is contained in:
Pierre Muller 2009-03-25 10:02:13 +00:00
parent dc1aa7347f
commit 1a6d2f2ff6
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2009-03-25 Pierre Muller <muller@ics.u-strasbg.fr>
ARI fix: "strlen d_name" rule.
* linux-nat.c (linux_nat_xfer_osdata): Use NAMELEN macro.
2009-03-24 Tom Tromey <tromey@redhat.com>
Pedro Alves <pedro@codesourcery.com>

View File

@ -4163,7 +4163,7 @@ linux_nat_xfer_osdata (struct target_ops *ops, enum target_object object,
char procentry[sizeof ("/proc/4294967295")];
if (!isdigit (dp->d_name[0])
|| strlen (dp->d_name) > sizeof ("4294967295") - 1)
|| NAMELEN (dp) > sizeof ("4294967295") - 1)
continue;
sprintf (procentry, "/proc/%s", dp->d_name);