silence MSVC warning

tests\unit\unit2604.c(112,1): error C2220: the following warning is treated as an error
tests\unit\unit2604.c(112,1): warning C4701: potentially uninitialized local variable 'cp0' used
tests\unit\unit2604.c(112,1): warning C4703: potentially uninitialized local pointer variable 'cp0' used
This commit is contained in:
Viktor Szakats 2025-08-02 12:44:03 +02:00
parent 44f32ff705
commit c471676b1e
No known key found for this signature in database
GPG key ID: B5ABD165E2AEF201

View file

@ -77,7 +77,7 @@ static CURLcode test_unit2604(const char *arg)
for(i = 0; list[i].home; i++) {
char *path;
char *cp0;
char *cp0 = NULL;
const char *cp;
CURLcode result;
if(i == 0) {