diff --git a/tests/unit/unit3205.c b/tests/unit/unit3205.c index aa2d6b94a3..5a74f5d50b 100644 --- a/tests/unit/unit3205.c +++ b/tests/unit/unit3205.c @@ -562,10 +562,12 @@ static CURLcode test_unit3205(const char *arg) if(test->id >= 0x0011 && test->id < 0x0017) { if(expect && memcmp(expect, "EDH-", 4) == 0) { curlx_strcopy(alt, sizeof(alt), expect, strlen(expect)); + /* NOLINTNEXTLINE(bugprone-not-null-terminated-result) */ expect = (const char *)memcpy(alt, "DHE-", 4); } if(expect && memcmp(expect + 4, "EDH-", 4) == 0) { curlx_strcopy(alt, sizeof(alt), expect, strlen(expect)); + /* NOLINTNEXTLINE(bugprone-not-null-terminated-result) */ expect = (const char *)memcpy(alt + 4, "DHE-", 4) - 4; } }