public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug middle-end/109990] New: [12 Regression] Bogus -Wuse-after-free warning after realloc
@ 2023-05-26 13:58 bruno at clisp dot org
  2023-05-26 14:25 ` [Bug middle-end/109990] [12/13/14 " pinskia at gcc dot gnu.org
                   ` (8 more replies)
  0 siblings, 9 replies; 10+ messages in thread
From: bruno at clisp dot org @ 2023-05-26 13:58 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 109990
           Summary: [12 Regression] Bogus -Wuse-after-free warning after
                    realloc
           Product: gcc
           Version: 13.1.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: middle-end
          Assignee: unassigned at gcc dot gnu.org
          Reporter: bruno at clisp dot org
  Target Milestone: ---

Created attachment 55168
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=55168&action=edit
test case bar.c

Compiling the attached file produces a warning that is not justified:

$ gcc -Wall -O2 -S bar.c
bar.c: In function ‘read_alias_file’:
bar.c:122:52: warning: pointer may be used after ‘realloc’ [-Wuse-after-free]
  122 |                           map[i].alias += new_pool - string_space;
      |                                           ~~~~~~~~~^~~~~~~~~~~~~~
bar.c:114:45: note: call to ‘realloc’ here
  114 |                   char *new_pool = (char *) realloc (string_space,
new_size);
      |                                            
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

The warning is not justified because only the pointer 'string_space' is used
here; it is not being dereferenced.

Seen with gcc 12.3.0 and 13.1.0.

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

end of thread, other threads:[~2024-03-22 13:45 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-05-26 13:58 [Bug middle-end/109990] New: [12 Regression] Bogus -Wuse-after-free warning after realloc bruno at clisp dot org
2023-05-26 14:25 ` [Bug middle-end/109990] [12/13/14 " pinskia at gcc dot gnu.org
2023-05-26 14:30 ` pinskia at gcc dot gnu.org
2023-05-26 14:31 ` pinskia at gcc dot gnu.org
2023-05-26 16:27 ` bruno at clisp dot org
2023-05-26 16:36 ` bruno at clisp dot org
2023-05-26 16:39 ` pinskia at gcc dot gnu.org
2023-05-30  7:35 ` rguenth at gcc dot gnu.org
2024-03-10  3:37 ` law at gcc dot gnu.org
2024-03-22 13:45 ` law 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).