From a817e1555a755224cacc1cbdeeaefb6a1de606f0 Mon Sep 17 00:00:00 2001 From: jvoisin Date: Wed, 24 Apr 2024 17:09:08 +0200 Subject: Fix some overlap mismatch This was caught by the following test: ``` int main(void) { char c[32]; memcpy(c, c + 16, 16); } ``` Reported-by: q66 --- tests/Makefile | 1 + 1 file changed, 1 insertion(+) (limited to 'tests/Makefile') diff --git a/tests/Makefile b/tests/Makefile index 8faf11a..81a1943 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -42,6 +42,7 @@ RUNTIME_TARGETS= \ test_gethostname_static \ test_getlogin_r_dynamic \ test_getlogin_r_static \ + test_issue57 \ test_mbsrtowcs_dynamic \ test_mbsrtowcs_static \ test_mbstowcs_dynamic \ -- cgit v1.3