OSDN Git Service

2004-03-19 Paolo Carlini <pcarlini@suse.de>
authorpaolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 19 Mar 2004 16:08:15 +0000 (16:08 +0000)
committerpaolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 19 Mar 2004 16:08:15 +0000 (16:08 +0000)
PR libstdc++/14648
* include/ext/ropeimpl.h (rope<>::_S_apply_to_pieces): Fix
memory allocation/deallocation calls.
* testsuite/ext/14648.cc: New.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@79687 138bc75d-0d04-0410-961f-82ee72b054a4

libstdc++-v3/ChangeLog
libstdc++-v3/include/ext/ropeimpl.h
libstdc++-v3/testsuite/ext/14648.cc [new file with mode: 0644]

index ad55bd7..a2dd65e 100644 (file)
@@ -1,3 +1,10 @@
+2004-03-19  Paolo Carlini  <pcarlini@suse.de>
+
+       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  <schmid@snake.iap.physik.tu-darmstadt.de>
 
        PR libstdc++/14647
index 0e545fe..b4c5f3e 100644 (file)
@@ -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 (file)
index 0000000..e54e2f8
--- /dev/null
@@ -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 <iostream>
+#include <ext/hash_map> 
+#include <ext/rope> 
+
+// libstdc++/14648
+void test01() 
+{ 
+  using namespace std; 
+  using namespace __gnu_cxx;
+
+  typedef hash_map<char, crope, hash<char>, equal_to<char> > maptype; 
+  maptype m; 
+  m['l'] = "50";
+  m['x'] = "10";
+  cout << "m['x'] = " << m['x'] << endl; 
+}  
+
+int main()
+{
+  test01();
+  return 0;
+}