examples: avoid use of uninitialized variable 'sock'
Этот коммит содержится в:
родитель
204100e636
Коммит
7bbefe0660
@ -84,7 +84,7 @@ int main(int argc, char *argv[])
|
||||
local = fopen(loclfile, "rb");
|
||||
if (!local) {
|
||||
fprintf(stderr, "Can't open local file %s\n", loclfile);
|
||||
goto shutdown;
|
||||
return -1;
|
||||
}
|
||||
|
||||
stat(loclfile, &fileinfo);
|
||||
|
@ -88,7 +88,7 @@ int main(int argc, char *argv[])
|
||||
local = fopen(loclfile, "rb");
|
||||
if (!local) {
|
||||
fprintf(stderr, "Can't local file %s\n", loclfile);
|
||||
goto shutdown;
|
||||
return -1;
|
||||
}
|
||||
|
||||
stat(loclfile, &fileinfo);
|
||||
|
@ -88,7 +88,7 @@ int main(int argc, char *argv[])
|
||||
local = fopen(loclfile, "rb");
|
||||
if (!local) {
|
||||
printf("Can't local file %s\n", loclfile);
|
||||
goto shutdown;
|
||||
return -1;
|
||||
}
|
||||
|
||||
/*
|
||||
|
@ -91,7 +91,7 @@ int main(int argc, char *argv[])
|
||||
local = fopen(loclfile, "rb");
|
||||
if (!local) {
|
||||
printf("Can't local file %s\n", loclfile);
|
||||
goto shutdown;
|
||||
return -1;
|
||||
}
|
||||
|
||||
/*
|
||||
|
Загрузка…
Ссылка в новой задаче
Block a user