This is the mail archive of the gdb@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: -Wmemsize-comparison warning on clang


On Fri, Feb 27, 2015 at 01:41:29PM -0500, Jack Howarth wrote:
> The gdb-7.9 release produces a warning on clang for -Wmemsize-comparison of...
> 
> remote.c:5519:47: warning: size argument in 'strncmp' call is a
> comparison [-Wmemsize-comparison]
>               && strncmp (p, "core", strlen ("core") != 0))
>                                      ~~~~~~~~~~~~~~~~^~~~
> remote.c:5519:11: note: did you mean to compare the result of 'strncmp' instead?
>               && strncmp (p, "core", strlen ("core") != 0))
>                  ^                                       ~
>                                                     )
> remote.c:5519:31: note: explicitly cast the argument to size_t to
> silence this warning
>               && strncmp (p, "core", strlen ("core") != 0))
>                                      ^
>                                      (size_t)(           )

Those look like bona fide bugs in GDB's code!

-- 
Joel


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]