1
0
mirror of https://gitlab.com/80486DX2-66/gists synced 2024-09-19 14:55:34 +05:30

reverse-ramdisk.c: fix reallocation, reduce code

This commit is contained in:
Intel A80486DX2-66 2024-01-03 21:03:43 +03:00
parent 50a6998d59
commit 438d62dbcd
Signed by: 80486DX2-66
GPG Key ID: 83631EF27054609B

View File

@ -146,13 +146,13 @@ int tf_free(int ID) {
for (int i = index; i < num_temp_files - 1; i++)
temp_files[(size_t) i] = temp_files[(size_t) i + 1];
num_temp_files--;
// Reallocate memory for the temp_files array
temp_files = realloc(temp_files, num_temp_files * sizeof(TempFile));
if (temp_files == NULL) {
line_fail(-2);
return -1;
if (--num_temp_files > 0) {
if ((temp_files = realloc(temp_files, num_temp_files
* sizeof(TempFile))) == NULL) {
line_fail(-2);
return -1;
}
}
temp_files[index].locked = false;