]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - debug/wcsrtombs_chk.c
Prefer https to http for gnu.org and fsf.org URLs
[thirdparty/glibc.git] / debug / wcsrtombs_chk.c
index e8daa1b6bd7496a3ea226caa057cafbcf047cef0..bd50f481c4863f9bff008c3740208208be775b20 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 2005, 2012 Free Software Foundation, Inc.
+/* Copyright (C) 2005-2019 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -13,7 +13,7 @@
 
    You should have received a copy of the GNU Lesser General Public
    License along with the GNU C Library; if not, see
-   <http://www.gnu.org/licenses/>.  */
+   <https://www.gnu.org/licenses/>.  */
 
 #include <locale.h>
 #include <wchar.h>
@@ -23,7 +23,7 @@ size_t
 __wcsrtombs_chk (char *dst, const wchar_t **src, size_t len,
                 mbstate_t *ps, size_t dstlen)
 {
-  if (__builtin_expect (dstlen < len, 0))
+  if (__glibc_unlikely (dstlen < len))
     __chk_fail ();
 
   return __wcsrtombs (dst, src, len, ps);