diff --git a/newlib/ChangeLog b/newlib/ChangeLog index 2bc96c286..126f5f059 100644 --- a/newlib/ChangeLog +++ b/newlib/ChangeLog @@ -1,3 +1,8 @@ +2013-04-02 Sebastian Huber + + * libc/posix/scandir.c (DIRSIZ): Use offsetof instead of magic + number. + 2013-03-27 Bin Cheng * acconfig.h (_FVWRITE_IN_STREAMIO): Undefine. diff --git a/newlib/libc/posix/scandir.c b/newlib/libc/posix/scandir.c index 96a66deb9..8cb8ff82d 100644 --- a/newlib/libc/posix/scandir.c +++ b/newlib/libc/posix/scandir.c @@ -42,6 +42,7 @@ static char sccsid[] = "@(#)scandir.c 5.10 (Berkeley) 2/23/91"; #include #include +#include #include #include #include @@ -56,10 +57,10 @@ static char sccsid[] = "@(#)scandir.c 5.10 (Berkeley) 2/23/91"; #undef DIRSIZ #ifdef _DIRENT_HAVE_D_NAMLEN #define DIRSIZ(dp) \ - ((sizeof (struct dirent) - (MAXNAMLEN+1)) + (((dp)->d_namlen+1 + 3) &~ 3)) + (offsetof (struct dirent, d_name) + (((dp)->d_namlen+1 + 3) &~ 3)) #else #define DIRSIZ(dp) \ - ((sizeof (struct dirent) - (MAXNAMLEN+1)) + ((strlen((dp)->d_name)+1 + 3) &~ 3)) + (offsetof (struct dirent, d_name) + ((strlen((dp)->d_name)+1 + 3) &~ 3)) #endif #ifndef __P