commit | a34132141ded6609bbedf0e2818612fe43908b6b | [log] [tgz] |
---|---|---|
author | Francois Berder <fberder@outlook.fr> | Sun Nov 12 20:16:50 2023 +0100 |
committer | Tom Rini <trini@konsulko.com> | Wed Nov 29 09:32:15 2023 -0500 |
tree | 54582e10cd158612f90eafe31e9bc382daaecbd6 | |
parent | 49f87498f199da25ead17a0c33e9f611bb2295f5 [diff] |
lib/slre: Fix memory leak if regex compilation fails Signed-off-by: Francois Berder <fberder@outlook.fr>
diff --git a/lib/slre.c b/lib/slre.c index e82a9e7..e1a5044 100644 --- a/lib/slre.c +++ b/lib/slre.c
@@ -686,6 +686,7 @@ } if (!slre_compile(&slre, argv[1])) { + (void) fclose(fp); fprintf(stderr, "Error compiling slre: %s\n", slre.err_str); return 1; }