PR:52604: (~__freelist): Reset pointer

From-SVN: r186414
This commit is contained in:
Laurent Alfonsi 2012-04-13 11:44:13 +00:00 committed by Christian Bruel
parent 7911cc9e23
commit 2db21e7eb9
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2012-04-13 Laurent Alfonsi <laurent.alfonsi@st.com>
PR libstdc++/52604
* src/c++98/mt_allocator.cc: (~__freelist): Reset pointer.
2012-04-13 Paolo Carlini <paolo.carlini@oracle.com>
* include/debug/safe_iterator.h (_BeforeBeginHelper<>::

View File

@ -1,6 +1,7 @@
// Allocator details.
// Copyright (C) 2004, 2005, 2006, 2009, 2010 Free Software Foundation, Inc.
// Copyright (C) 2004, 2005, 2006, 2009, 2010, 2012
// Free Software Foundation, Inc.
//
// 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
@ -48,6 +49,7 @@ namespace
{
__gthread_key_delete(_M_key);
::operator delete(static_cast<void*>(_M_thread_freelist_array));
_M_thread_freelist = 0;
}
}
};