NOISSUE fix benign issue in pack200 unpacker binary.
This commit is contained in:
parent
60777ad8ce
commit
e9a6199507
@ -16,15 +16,15 @@ int main(int argc, char **argv)
|
|||||||
}
|
}
|
||||||
|
|
||||||
FILE *input = fopen(argv[1], "rb");
|
FILE *input = fopen(argv[1], "rb");
|
||||||
FILE *output = fopen(argv[2], "wb");
|
|
||||||
if (!input)
|
if (!input)
|
||||||
{
|
{
|
||||||
std::cerr << "Can't open input file";
|
std::cerr << "Can't open input file";
|
||||||
return EXIT_FAILURE;
|
return EXIT_FAILURE;
|
||||||
}
|
}
|
||||||
|
FILE *output = fopen(argv[2], "wb");
|
||||||
if (!output)
|
if (!output)
|
||||||
{
|
{
|
||||||
fclose(output);
|
fclose(input);
|
||||||
std::cerr << "Can't open output file";
|
std::cerr << "Can't open output file";
|
||||||
return EXIT_FAILURE;
|
return EXIT_FAILURE;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user