diff options
author | Siddhesh Poyarekar <siddhesh@sourceware.org> | 2021-12-16 07:19:14 +0530 |
---|---|---|
committer | Siddhesh Poyarekar <siddhesh@sourceware.org> | 2021-12-16 07:21:43 +0530 |
commit | ae23fa3e5fe24daf94fc7f8e5268bb8ceeda7477 (patch) | |
tree | f648089ce8712cb60c2ab6455bc7b5be00bd4782 /misc | |
parent | 0f982c182760bd7689769ee7590df592d0a132c0 (diff) | |
download | glibc-ae23fa3e5fe24daf94fc7f8e5268bb8ceeda7477.zip glibc-ae23fa3e5fe24daf94fc7f8e5268bb8ceeda7477.tar.gz glibc-ae23fa3e5fe24daf94fc7f8e5268bb8ceeda7477.tar.bz2 |
__glibc_unsafe_len: Fix comment
We know that the length is *unsafe*.
Signed-off-by: Siddhesh Poyarekar <siddhesh@sourceware.org>
Diffstat (limited to 'misc')
-rw-r--r-- | misc/sys/cdefs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/sys/cdefs.h b/misc/sys/cdefs.h index ab57d4a..a05b538 100644 --- a/misc/sys/cdefs.h +++ b/misc/sys/cdefs.h @@ -169,7 +169,7 @@ __s, __osz)) \ && __glibc_safe_len_cond ((__SIZE_TYPE__) (__l), __s, __osz)) -/* Conversely, we know at compile time that the length is safe if the +/* Conversely, we know at compile time that the length is unsafe if the __L * __S <= __OBJSZ condition can be folded to a constant and if it is false. */ #define __glibc_unsafe_len(__l, __s, __osz) \ |