aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Pluzhnikov <ppluzhnikov@google.com>2010-12-06 18:43:16 -0800
committerPaolo Carlini <paolo@gcc.gnu.org>2010-12-07 02:43:16 +0000
commita180e98542b993c20dedbceaf9773e4dcf8bbb60 (patch)
tree0017d57efee841e17c2a97548a4eb96aaf02f384
parent1b6d012b5070fb155e99c169ef1f2a82861538ac (diff)
downloadgcc-a180e98542b993c20dedbceaf9773e4dcf8bbb60.zip
gcc-a180e98542b993c20dedbceaf9773e4dcf8bbb60.tar.gz
gcc-a180e98542b993c20dedbceaf9773e4dcf8bbb60.tar.bz2
re PR libstdc++/46830 (s.swap(s) triggers overlapped memcpy() for versa_string)
2010-12-06 Paul Pluzhnikov <ppluzhnikov@google.com> PR libstdc++/46830 * include/ext/sso_string_base.h (__sso_string_base<>::_M_swap): Early return when this == &__rcs. From-SVN: r167528
-rw-r--r--libstdc++-v3/ChangeLog6
-rw-r--r--libstdc++-v3/include/ext/sso_string_base.h6
2 files changed, 11 insertions, 1 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index 410743e..19bdd55 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,3 +1,9 @@
+2010-12-06 Paul Pluzhnikov <ppluzhnikov@google.com>
+
+ PR libstdc++/46830
+ * include/ext/sso_string_base.h (__sso_string_base<>::_M_swap):
+ Early return when this == &__rcs.
+
2010-12-06 Paolo Carlini <paolo.carlini@oracle.com>
* include/bits/shared_ptr.h (shared_ptr<>::shared_ptr(_Tp1*, _Deleter,
diff --git a/libstdc++-v3/include/ext/sso_string_base.h b/libstdc++-v3/include/ext/sso_string_base.h
index 43d4452..6168631 100644
--- a/libstdc++-v3/include/ext/sso_string_base.h
+++ b/libstdc++-v3/include/ext/sso_string_base.h
@@ -1,6 +1,7 @@
// Short-string-optimized versatile string base -*- C++ -*-
-// Copyright (C) 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+// Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010
+// 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
@@ -232,6 +233,9 @@ _GLIBCXX_BEGIN_NAMESPACE(__gnu_cxx)
__sso_string_base<_CharT, _Traits, _Alloc>::
_M_swap(__sso_string_base& __rcs)
{
+ if (this == &__rcs)
+ return;
+
// _GLIBCXX_RESOLVE_LIB_DEFECTS
// 431. Swapping containers with unequal allocators.
std::__alloc_swap<_CharT_alloc_type>::_S_do_it(_M_get_allocator(),