diff options
Diffstat (limited to 'include/fortify-headers.h')
| -rw-r--r-- | include/fortify-headers.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/fortify-headers.h b/include/fortify-headers.h index ea2e430..796fd2d 100644 --- a/include/fortify-headers.h +++ b/include/fortify-headers.h | |||
| @@ -141,8 +141,8 @@ | |||
| 141 | * since gcc seems to like to generate code that relies on dst == src */ | 141 | * since gcc seems to like to generate code that relies on dst == src */ |
| 142 | #define __fh_overlap(a, len_a, b, len_b) \ | 142 | #define __fh_overlap(a, len_a, b, len_b) \ |
| 143 | ( \ | 143 | ( \ |
| 144 | ((a) < (b) && (b) < (a) + (__fh_size_t)(len_a)) \ | 144 | ((a) < (b) && (b) < ((a) + (__fh_size_t)(len_a))) \ |
| 145 | || ((b) < (a) && (a) < (b) + (__fh_size_t)(len_b)) \ | 145 | || ((b) < (a) && (a) < ((b) + (__fh_size_t)(len_b))) \ |
| 146 | ) | 146 | ) |
| 147 | 147 | ||
| 148 | /* | 148 | /* |
