forked from pool/glibc
Andreas Schwab
d6ae5339fb
- Don't create separate debuginfo packages for cross packages - ldconfig-leak-empty-paths.patch: ldconfig: avoid leak on empty paths in config file - gconv-parseconfdir-memory-leak.patch: gconv_parseconfdir: Fix memory leak - gaiconf-init-double-free.patch: gaiconf_init: Avoid double-free in label and precedence lists - copy-and-spawn-sgid-double-close.patch: copy_and_spawn_sgid: Avoid double calls to close() - icon-charmap-close-output.patch: iconv_charmap: Close output file when done - fcntl-time-bits-64-redirect.patch: Linux: Fix fcntl, ioctl, prctl redirects for _TIME_BITS=64 (BZ #28182) - librt-null-pointer.patch: librt: fix NULL pointer dereference (BZ #28213) OBS-URL: https://build.opensuse.org/request/show/911560 OBS-URL: https://build.opensuse.org/package/show/Base:System/glibc?expand=0&rev=603
31 lines
772 B
Diff
31 lines
772 B
Diff
From b0234d79e7d82475d1666f25326ec045c045b3ed Mon Sep 17 00:00:00 2001
|
|
From: Siddhesh Poyarekar <siddhesh@sourceware.org>
|
|
Date: Tue, 3 Aug 2021 21:10:10 +0530
|
|
Subject: [PATCH] ldconfig: avoid leak on empty paths in config file
|
|
|
|
Reviewed-by: Arjun Shankar <arjun@redhat.com>
|
|
---
|
|
elf/ldconfig.c | 6 +++++-
|
|
1 file changed, 5 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/elf/ldconfig.c b/elf/ldconfig.c
|
|
index 1037e8d0cf..b8893637f8 100644
|
|
--- a/elf/ldconfig.c
|
|
+++ b/elf/ldconfig.c
|
|
@@ -503,7 +503,11 @@ add_dir_1 (const char *line, const char *from_file, int from_line)
|
|
entry->path[--i] = '\0';
|
|
|
|
if (i == 0)
|
|
- return;
|
|
+ {
|
|
+ free (entry->path);
|
|
+ free (entry);
|
|
+ return;
|
|
+ }
|
|
|
|
char *path = entry->path;
|
|
if (opt_chroot != NULL)
|
|
--
|
|
2.32.0
|
|
|