mirror of
https://github.com/pspdev/pspsdk.git
synced 2025-10-03 16:51:27 +00:00
fix wrong closed file stream
This commit is contained in:
@@ -362,13 +362,13 @@ int main(int argc, char *argv[])
|
|||||||
buffer = malloc(size);
|
buffer = malloc(size);
|
||||||
if (buffer == NULL) {
|
if (buffer == NULL) {
|
||||||
printf("Failed to allocate memory.\n");
|
printf("Failed to allocate memory.\n");
|
||||||
fclose(dest);
|
fclose(source);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (fread(buffer, 1, size, source) != size) {
|
if (fread(buffer, 1, size, source) != size) {
|
||||||
printf("Failed to read file.\n");
|
printf("Failed to read file.\n");
|
||||||
fclose(dest);
|
fclose(source);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
fclose(source);
|
fclose(source);
|
||||||
|
Reference in New Issue
Block a user