forked from pool/systemd
c0d22af24a
add: 1026-re-add-persistent-net.patch - rebase all patches, ensure that they apply properly. OBS-URL: https://build.opensuse.org/package/show/Base:System/systemd?expand=0&rev=357
22 lines
670 B
Diff
22 lines
670 B
Diff
From 86ed7ec58b9b6a0907bbb3b8d07c930e52915de0 Mon Sep 17 00:00:00 2001
|
|
From: Lennart Poettering <lennart@poettering.net>
|
|
Date: Thu, 17 Jan 2013 17:38:00 +0100
|
|
Subject: [PATCH] util: fix bad memory access
|
|
|
|
---
|
|
src/shared/util.c | 1 -
|
|
1 file changed, 1 deletion(-)
|
|
|
|
Index: systemd-195/src/shared/util.c
|
|
===================================================================
|
|
--- systemd-195.orig/src/shared/util.c
|
|
+++ systemd-195/src/shared/util.c
|
|
@@ -543,7 +543,6 @@ int get_parent_of_pid(pid_t pid, pid_t *
|
|
|
|
if (!fgets(line, sizeof(line), f)) {
|
|
r = feof(f) ? -EIO : -errno;
|
|
- fclose(f);
|
|
return r;
|
|
}
|
|
|