public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/52955] New: Missing warning on wrong sizeof usage
@ 2012-04-12 21:57 xinliangli at gmail dot com
  2012-04-13  0:09 ` [Bug c++/52955] " pinskia at gcc dot gnu.org
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: xinliangli at gmail dot com @ 2012-04-12 21:57 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52955

             Bug #: 52955
           Summary: Missing warning on wrong sizeof usage
    Classification: Unclassified
           Product: gcc
           Version: 4.8.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: xinliangli@gmail.com


Example:


 #include <memory.h>
 struct S { int a, b, c; float vec[16]; };
 void test(S *s) {
  // ...
  memset(s, 0, sizeof(s));
  // ...
 }

 /*

memset.cpp:5:23: warning: argument to 'sizeof' in 'memset' call is the
same expression as the destination; did you mean to dereference it? [-
Wsizeof-pointer-memaccess]
 memset(s, 0, sizeof(s));
        ~            ^
1 warning generated.

*/


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2012-10-11 22:45 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-04-12 21:57 [Bug c++/52955] New: Missing warning on wrong sizeof usage xinliangli at gmail dot com
2012-04-13  0:09 ` [Bug c++/52955] " pinskia at gcc dot gnu.org
2012-10-11 22:33 ` paolo.carlini at oracle dot com
2012-10-11 22:45 ` jakub at gcc dot gnu.org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).