public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/114805] New: placement new doesn't check array length
@ 2024-04-22 15:57 pshevchuk at pshevchuk dot com
  2024-04-22 16:11 ` [Bug c++/114805] " redi at gcc dot gnu.org
  0 siblings, 1 reply; 2+ messages in thread
From: pshevchuk at pshevchuk dot com @ 2024-04-22 15:57 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 114805
           Summary: placement new doesn't check array length
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: pshevchuk at pshevchuk dot com
  Target Milestone: ---

Created attachment 58007
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=58007&action=edit
Example code but as attachment

#include <new>
#include <cstdio>

int main()
{
    int sz = -1;
    char buf[9];
    char* res = new (buf) char[sz];
    std::puts(res == (char*) nullptr? "correct" : "wrong");
}

This program should output "correct", since:

expr.new.9: array bound is erroneous since it's less than zero before
conversion to std::size_t (9.1)

expr.new.9.5.1: the placement new is nothrow, so the result of this operation
must be nullptr. It isn't

Curiously, if you replace the allocated type with an array of ints, it will
incorrectly throw the std::bad_array_new_length exception instead of returning
nullptr

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

* [Bug c++/114805] placement new doesn't check array length
  2024-04-22 15:57 [Bug c++/114805] New: placement new doesn't check array length pshevchuk at pshevchuk dot com
@ 2024-04-22 16:11 ` redi at gcc dot gnu.org
  0 siblings, 0 replies; 2+ messages in thread
From: redi at gcc dot gnu.org @ 2024-04-22 16:11 UTC (permalink / raw)
  To: gcc-bugs

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

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         Resolution|---                         |DUPLICATE
             Status|UNCONFIRMED                 |RESOLVED

--- Comment #1 from Jonathan Wakely <redi at gcc dot gnu.org> ---
dup

*** This bug has been marked as a duplicate of bug 114806 ***

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

end of thread, other threads:[~2024-04-22 16:11 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-04-22 15:57 [Bug c++/114805] New: placement new doesn't check array length pshevchuk at pshevchuk dot com
2024-04-22 16:11 ` [Bug c++/114805] " redi 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).