35 lines
1.1 KiB
Diff
35 lines
1.1 KiB
Diff
|
From f20403c231e9c7f5446066f01f2f5245238d978c Mon Sep 17 00:00:00 2001
|
||
|
From: Lennart Poettering <lennart@poettering.net>
|
||
|
Date: Wed, 2 Oct 2013 19:37:11 +0200
|
||
|
Subject: [PATCH] bus: fix potentially uninitialized memory access
|
||
|
|
||
|
---
|
||
|
src/libsystemd-bus/bus-internal.c | 4 ++--
|
||
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
||
|
|
||
|
diff --git a/src/libsystemd-bus/bus-internal.c b/src/libsystemd-bus/bus-internal.c
|
||
|
index 0e66f3d..cac948e 100644
|
||
|
--- a/src/libsystemd-bus/bus-internal.c
|
||
|
+++ b/src/libsystemd-bus/bus-internal.c
|
||
|
@@ -63,7 +63,7 @@ bool object_path_is_valid(const char *p) {
|
||
|
|
||
|
bool interface_name_is_valid(const char *p) {
|
||
|
const char *q;
|
||
|
- bool dot, found_dot;
|
||
|
+ bool dot, found_dot = false;
|
||
|
|
||
|
if (isempty(p))
|
||
|
return false;
|
||
|
@@ -103,7 +103,7 @@ bool interface_name_is_valid(const char *p) {
|
||
|
|
||
|
bool service_name_is_valid(const char *p) {
|
||
|
const char *q;
|
||
|
- bool dot, found_dot, unique;
|
||
|
+ bool dot, found_dot = false, unique;
|
||
|
|
||
|
if (isempty(p))
|
||
|
return false;
|
||
|
--
|
||
|
1.8.4.652.g0d6e0ce
|
||
|
|