1
0
mirror of https://git.disroot.org/80486DX2-66/polonium.git synced 2024-12-26 15:10:40 +05:30

corrupter.c: do not close file, but call PERROR_MACRO

This commit is contained in:
Intel A80486DX2-66 2024-11-19 23:57:02 +03:00
parent 632c180f29
commit 6f2c89133b
Signed by: 80486DX2-66
GPG Key ID: 83631EF27054609B

View File

@ -17,8 +17,9 @@ enum Interoperation_Result {
/* macros: lambdas */
#define CORRUPT_BYTE_MACRO \
if (corrupt_byte(Interoperation_Share_Vars) == INTEROPERATION_ERROR) { \
PERROR_MACRO("corrupt_byte"); \
\
result->error = true; \
fclose(file); \
return result; \
}