Fix return without clean

This commit is contained in:
Zhi Guan
2026-06-17 15:59:55 +08:00
parent 7ef784a9fc
commit 4831f5a549
6 changed files with 6 additions and 6 deletions

View File

@@ -332,7 +332,7 @@ bad:
}
if (fwrite(outbuf, 1, outlen, outfp) != outlen) {
fprintf(stderr, "%s: output failure\n", prog);
return -1;
goto end;
}
ret = 0;