From: Paolo Carlini Date: Fri, 19 Mar 2004 16:08:15 +0000 (+0000) Subject: re PR libstdc++/14648 (rope is broken (regression)) X-Git-Tag: releases/gcc-4.0.0~9301 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=59d35672142c7b555a1722f57e853fb1dbc51e84;p=thirdparty%2Fgcc.git re PR libstdc++/14648 (rope is broken (regression)) 2004-03-19 Paolo Carlini PR libstdc++/14648 * include/ext/ropeimpl.h (rope<>::_S_apply_to_pieces): Fix memory allocation/deallocation calls. * testsuite/ext/14648.cc: New. From-SVN: r79687 --- diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index ad55bd734a3b..a2dd65e31031 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,10 @@ +2004-03-19 Paolo Carlini + + PR libstdc++/14648 + * include/ext/ropeimpl.h (rope<>::_S_apply_to_pieces): Fix + memory allocation/deallocation calls. + * testsuite/ext/14648.cc: New. + 2004-03-19 Peter Schmid PR libstdc++/14647 diff --git a/libstdc++-v3/include/ext/ropeimpl.h b/libstdc++-v3/include/ext/ropeimpl.h index 0e545feff7fa..b4c5f3e29e8d 100644 --- a/libstdc++-v3/include/ext/ropeimpl.h +++ b/libstdc++-v3/include/ext/ropeimpl.h @@ -874,15 +874,15 @@ bool rope<_CharT, _Alloc>::_S_apply_to_pieces( size_t __len = __end - __begin; bool __result; _CharT* __buffer = - (_CharT*)_Alloc::allocate(__len * sizeof(_CharT)); + (_CharT*)_Alloc().allocate(__len * sizeof(_CharT)); try { (*(__f->_M_fn))(__begin, __len, __buffer); __result = __c(__buffer, __len); - _Alloc::deallocate(__buffer, __len * sizeof(_CharT)); + _Alloc().deallocate(__buffer, __len * sizeof(_CharT)); } catch(...) { - _Alloc::deallocate(__buffer, __len * sizeof(_CharT)); + _Alloc().deallocate(__buffer, __len * sizeof(_CharT)); __throw_exception_again; } return __result; diff --git a/libstdc++-v3/testsuite/ext/14648.cc b/libstdc++-v3/testsuite/ext/14648.cc new file mode 100644 index 000000000000..e54e2f87e699 --- /dev/null +++ b/libstdc++-v3/testsuite/ext/14648.cc @@ -0,0 +1,40 @@ +// Copyright (C) 2004 Free Software Foundation +// +// This file is part of the GNU ISO C++ Library. This library is free +// software; you can redistribute it and/or modify it under the +// terms of the GNU General Public License as published by the +// Free Software Foundation; either version 2, or (at your option) +// any later version. + +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. + +// You should have received a copy of the GNU General Public License along +// with this library; see the file COPYING. If not, write to the Free +// Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, +// USA. + +#include +#include +#include + +// libstdc++/14648 +void test01() +{ + using namespace std; + using namespace __gnu_cxx; + + typedef hash_map, equal_to > maptype; + maptype m; + m['l'] = "50"; + m['x'] = "10"; + cout << "m['x'] = " << m['x'] << endl; +} + +int main() +{ + test01(); + return 0; +}