diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2013-12-15 16:25:04 -0500 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2013-12-15 17:49:28 -0500 |
commit | 2fd069b18e525860514a70d3ea08410ca122d3e2 (patch) | |
tree | c100efe3f3ddc3d1ddc780ce207f8d5d4821682d /src/udev/net/link-config.c | |
parent | 9bfa2c029d4367406bda9b8984e579e0b06b3b2b (diff) |
Fix a few resource leaks in error paths
https://bugzilla.redhat.com/show_bug.cgi?id=1043304
Diffstat (limited to 'src/udev/net/link-config.c')
-rw-r--r-- | src/udev/net/link-config.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/udev/net/link-config.c b/src/udev/net/link-config.c index f25afa60c7..1a9d780a67 100644 --- a/src/udev/net/link-config.c +++ b/src/udev/net/link-config.c @@ -149,7 +149,7 @@ void link_config_ctx_free(link_config_ctx *ctx) { static int load_link(link_config_ctx *ctx, const char *filename) { link_config *link; - FILE *file; + _cleanup_fclose_ FILE *file; int r; file = fopen(filename, "re"); |