public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c/107951] New: Invalid flexible array use not detected in nested structs by the C frontend
@ 2022-12-02 13:28 siddhesh at gcc dot gnu.org
  2022-12-02 14:44 ` [Bug c/107951] " rguenth at gcc dot gnu.org
                   ` (7 more replies)
  0 siblings, 8 replies; 9+ messages in thread
From: siddhesh at gcc dot gnu.org @ 2022-12-02 13:28 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=107951

            Bug ID: 107951
           Summary: Invalid flexible array use not detected in nested
                    structs by the C frontend
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c
          Assignee: unassigned at gcc dot gnu.org
          Reporter: siddhesh at gcc dot gnu.org
  Target Milestone: ---

The following program:

typedef struct {
  char pad;
  char data[];
} F2;

typedef struct {
  F2 flex;
  unsigned pad;
} S2;

#define NULL (void *) 0

__SIZE_TYPE__
nested_flexarray (__SIZE_TYPE__ n)
{
  S2 *p = __builtin_malloc (n);

  return __builtin_dynamic_object_size (p->flex.data, 1);
}

ends up treating data[] as a zero sized array in C instead of flagging an
error.  This is correctly handled in the C++ driver.

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

end of thread, other threads:[~2022-12-02 17:01 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-12-02 13:28 [Bug c/107951] New: Invalid flexible array use not detected in nested structs by the C frontend siddhesh at gcc dot gnu.org
2022-12-02 14:44 ` [Bug c/107951] " rguenth at gcc dot gnu.org
2022-12-02 15:38 ` qinzhao at gcc dot gnu.org
2022-12-02 15:47 ` pinskia at gcc dot gnu.org
2022-12-02 15:50 ` pinskia at gcc dot gnu.org
2022-12-02 16:36 ` siddhesh at gcc dot gnu.org
2022-12-02 16:51 ` qinzhao at gcc dot gnu.org
2022-12-02 16:55 ` jakub at gcc dot gnu.org
2022-12-02 17:01 ` qinzhao 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).