diff options
Diffstat (limited to '')
-rw-r--r-- | external/unbound/compat/memmove.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/external/unbound/compat/memmove.c b/external/unbound/compat/memmove.c index 0035bbf75..fe319bb49 100644 --- a/external/unbound/compat/memmove.c +++ b/external/unbound/compat/memmove.c @@ -28,7 +28,7 @@ void *memmove(void *dest, const void *src, size_t n) to[i] = from[i]; return dest; } - if (from > to && from-to < (int)n) { + if (from > to && from-to < (int)n) { /* to overlaps with from */ /* <from......> */ /* <to........> */ |