]> git.saurik.com Git - apple/libc.git/blobdiff - secure/strcat_chk.c
Libc-997.90.3.tar.gz
[apple/libc.git] / secure / strcat_chk.c
index c6be25ccbbc3d7c2a7f6b96e91b94a25cc8a0fc7..7445ab3babc6bee11eb94e4be2adbccf77502ad6 100644 (file)
@@ -36,7 +36,7 @@ __strcat_chk (char *__restrict dest, const char *__restrict append,
   if (__builtin_expect (dstlen < len1 + len2 + 1, 0))
     __chk_fail_overflow ();
 
-  if (__builtin_expect (__chk_assert_no_overlap, 1))
+  if (__builtin_expect (__chk_assert_no_overlap != 0, 1))
     __chk_overlap(dest, len1 + len2 + 1, append, len2 + 1);
 
   memcpy(dest + len1, append, len2 + 1);