]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
libstdc++: More fixes for null pointers used with std::char_traits
authorJonathan Wakely <jwakely@redhat.com>
Tue, 28 Mar 2023 10:12:58 +0000 (11:12 +0100)
committerJonathan Wakely <jwakely@redhat.com>
Tue, 28 Mar 2023 21:59:51 +0000 (22:59 +0100)
The std::char_traits member functions require that [p,p+n) is a valid
range, which is true for p==nullptr iff n==0. But we must not call
memcpy, memset etc, in that case, as they require non-null pointers even
when n==0.

This std::char_traits<char> and std::char_traits<wchar_t> explicit
specializations are already correct, but the primary template has some
bugs.

libstdc++-v3/ChangeLog:

* include/bits/char_traits.h (char_traits::copy): Return without
using memcpy if n==0.
(char_traits::assign): Likewise for memset.

(cherry picked from commit cb6f663f9d79d7134ae6ecaff9a25342c40aeb5d)

libstdc++-v3/include/bits/char_traits.h

index cac1326d4b58e9766998575c254ef9d14157a6c5..3c136f930ef83453f273dcc4b0f852c6742170bc 100644 (file)
@@ -255,6 +255,8 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
     char_traits<_CharT>::
     copy(char_type* __s1, const char_type* __s2, std::size_t __n)
     {
+      if (__n == 0)
+       return __s1;
 #if __cplusplus >= 202002L
       if (std::__is_constant_evaluated())
        {
@@ -263,7 +265,6 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
          return __s1;
        }
 #endif
-
       __builtin_memcpy(__s1, __s2, __n * sizeof(char_type));
       return __s1;
     }
@@ -285,9 +286,12 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
 
       if _GLIBCXX17_CONSTEXPR (sizeof(_CharT) == 1 && __is_trivial(_CharT))
        {
-         unsigned char __c;
-         __builtin_memcpy(&__c, __builtin_addressof(__a), 1);
-         __builtin_memset(__s, __c, __n);
+         if (__n)
+           {
+             unsigned char __c;
+             __builtin_memcpy(&__c, __builtin_addressof(__a), 1);
+             __builtin_memset(__s, __c, __n);
+           }
        }
       else
        {