forked from pool/systemd
31 lines
1013 B
Diff
31 lines
1013 B
Diff
|
From f8a0bb5285024b6ce372c3157e761e6543ebdcd2 Mon Sep 17 00:00:00 2001
|
||
|
From: Andreas Henriksson <andreas@fatal.se>
|
||
|
Date: Fri, 13 Jun 2014 18:48:21 +0200
|
||
|
Subject: [PATCH] udev: fix invalid free() in enable_name_policy()
|
||
|
|
||
|
static bool enable_name_policy(...) in ./src/udev/net/link-config.c
|
||
|
calls proc_cmdline(...) to get "line" initialized, but
|
||
|
proc_cmdline(...) does not guarantee that atleast when both
|
||
|
conditions (detect_container(NULL) > 0) and
|
||
|
read_full_file(...) returned < 0.
|
||
|
---
|
||
|
src/udev/net/link-config.c | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git src/udev/net/link-config.c src/udev/net/link-config.c
|
||
|
index a9acc3d..7a9d01b 100644
|
||
|
--- src/udev/net/link-config.c
|
||
|
+++ src/udev/net/link-config.c
|
||
|
@@ -185,7 +185,7 @@ static int load_link(link_config_ctx *ctx, const char *filename) {
|
||
|
}
|
||
|
|
||
|
static bool enable_name_policy(void) {
|
||
|
- _cleanup_free_ char *line;
|
||
|
+ _cleanup_free_ char *line = NULL;
|
||
|
char *w, *state;
|
||
|
int r;
|
||
|
size_t l;
|
||
|
--
|
||
|
1.7.9.2
|
||
|
|