]> git.saurik.com Git - apple/libc.git/blobdiff - secure/memcpy_chk.c
Libc-1158.50.2.tar.gz
[apple/libc.git] / secure / memcpy_chk.c
index bb286fad9fe7f2691469f655fb79e5d0fabfbc07..fcc562221e1d712bd59aae8c7ce8558da8d64083 100644 (file)
@@ -33,7 +33,7 @@ __memcpy_chk (void *dest, const void *src, size_t len, size_t dstlen)
 
   /* On OS X, memcpy has supported overlapping buffers for many years.
    * While technically, this will catch buggy code, we should not abort.
-   * if (__chk_assert_no_overlap)
+   * if (__builtin_expect (__chk_assert_no_overlap != 0, 1))
    *   __chk_overlap(dest, len, src, len);
    */