ARI fix: "strlen d_name" rule.
authorPierre Muller <muller@sourceware.org>
Wed, 25 Mar 2009 10:02:13 +0000 (10:02 +0000)
committerPierre Muller <muller@sourceware.org>
Wed, 25 Mar 2009 10:02:13 +0000 (10:02 +0000)
* linux-nat.c (linux_nat_xfer_osdata): Use NAMELEN macro.

gdb/ChangeLog
gdb/linux-nat.c

index 5c626c1..bbeaff9 100644 (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>
 
index 3cfc2b2..be99ece 100644 (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);