mirror of
https://github.com/curl/curl.git
synced 2026-07-27 10:47:18 +03:00
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:
parent
44f32ff705
commit
c471676b1e
1 changed files with 1 additions and 1 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue