[ https://issues.apache.org/jira/browse/STDCXX-293?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Farid Zaripov resolved STDCXX-293.
----------------------------------
Resolution: Fixed
Fixed thus: http://svn.apache.org/viewvc?view=rev&rev=549584
> __rw::__rw_throw(): operator delete[] called without corresponding operator new[] call
> --------------------------------------------------------------------------------------
>
> Key: STDCXX-293
> URL: https://issues.apache.org/jira/browse/STDCXX-293
> Project: C++ Standard Library
> Issue Type: Bug
> Components: 18. Language Support, 19. Diagnostics
> Affects Versions: 4.1.3
> Environment: All
> Reporter: Farid Zaripov
> Assignee: Farid Zaripov
>
> The test below fails:
> -----------------------------------------------------------
> #include <cstddef> // for std::size_t
> #include <assert.h> // for assert
> #include <rw/_error.h> // for __rw_throw_proc, _RWSTD_ERROR_LOCALE_BAD_CAT
> void* operator new[] (std::size_t)
> {
> assert (!"operator new[] unexpectedly called");
> return 0;
> }
> void operator delete[] (void*)
> {
> assert (!"operator delete[] called without operator new[]");
> }
> int main ()
> {
> __rw::__rw_throw (_RWSTD_ERROR_LOCALE_BAD_CAT + 1, __FILE__, "main");
> return 0;
> }
> -----------------------------------------------------------
> Assertion failed: !"operator delete[] called without operator new[]", file .\tes
> t.cpp, line 13
> This application has requested the Runtime to terminate it in an unusual way.
> Please contact the application's support team for more information.
> -----------------------------------------------------------
> The details are here: http://mail-archives.apache.org/mod_mbox/incubator-stdcxx-dev/200609.mbox/%3c451BFD6E.6020409@roguewave.com%3e
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.
|