target/riscv: fix close fileio and free temp when conditions are met

- When `fileio` is valid, close it;
- When `temp` exists, free its memory;
- This ensures proper resource management.

Change-Id: I66be66e3945415f2e970ea47c077942be5977541
Signed-off-by: Huaqi Fang <578567190@qq.com>
This commit is contained in:
Huaqi Fang 2024-12-27 15:50:03 +08:00
parent 2c8bf769e0
commit 30bbf4dabc
1 changed files with 2 additions and 2 deletions

View File

@ -691,9 +691,9 @@ fail:
LOG_ERROR("Unexpected error happened during dumping etrace!");
retval = ERROR_OK;
ok:
if (!fileio)
if (fileio)
fileio_close(fileio);
if (!temp)
if (temp)
free(temp);
return retval;