]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - debug/mbstowcs_chk.c
Prefer https to http for gnu.org and fsf.org URLs
[thirdparty/glibc.git] / debug / mbstowcs_chk.c
index d840d1f6a169c91f8c509b5ad130fcd6642f9ba4..53a12768aa01f739a89db03616dbd52d53eb4cbe 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 2005 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 <string.h>
@@ -23,7 +23,7 @@
 size_t
 __mbstowcs_chk (wchar_t *dst, const char *src, size_t len, size_t dstlen)
 {
-  if (__builtin_expect (dstlen < len, 0))
+  if (__glibc_unlikely (dstlen < len))
     __chk_fail ();
 
   mbstate_t state;