On 2/19/25 02:03, Daniel P. Berrangé wrote:
+ cleanup: + free(buf); + + if (outf && + fclose(outf) != 0) + ret = EXIT_FAILURE; + if (inf && + fclose(inf) != 0) + ret = EXIT_FAILURE; + return ret;
Modulo the lack of braces here, the patch looks fine. r~