You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.3 KiB
55 lines
1.3 KiB
From eaa335e7c4686c622f31e691f8a41fdf30ea42b3 Mon Sep 17 00:00:00 2001
|
|
From: Akira TAGOH <akira@tagoh.org>
|
|
Date: Wed, 31 Jul 2024 17:31:36 +0900
|
|
Subject: [PATCH 1/2] Fix a memory leak in _get_real_paths_from_prefix
|
|
|
|
---
|
|
src/fcxml.c | 4 +---
|
|
1 file changed, 1 insertion(+), 3 deletions(-)
|
|
|
|
diff --git a/src/fcxml.c b/src/fcxml.c
|
|
index 9fe0674..083fc1f 100644
|
|
--- a/src/fcxml.c
|
|
+++ b/src/fcxml.c
|
|
@@ -1327,11 +1327,9 @@ _get_real_paths_from_prefix(FcConfigParse *parse, const FcChar8 *path, const FcC
|
|
if (!p)
|
|
return NULL;
|
|
parent = FcStrDirname (p);
|
|
+ FcStrFree (p);
|
|
if (!parent)
|
|
- {
|
|
- free (p);
|
|
return NULL;
|
|
- }
|
|
}
|
|
}
|
|
#ifndef _WIN32
|
|
--
|
|
2.45.2
|
|
|
|
From ab765827101787d49c0a66b23addc1f68f99a455 Mon Sep 17 00:00:00 2001
|
|
From: Akira TAGOH <akira@tagoh.org>
|
|
Date: Wed, 31 Jul 2024 17:37:53 +0900
|
|
Subject: [PATCH 2/2] Set FcTypeVoid if no valid types to convert
|
|
|
|
---
|
|
src/fcname.c | 2 ++
|
|
1 file changed, 2 insertions(+)
|
|
|
|
diff --git a/src/fcname.c b/src/fcname.c
|
|
index 566f0ef..b152bd9 100644
|
|
--- a/src/fcname.c
|
|
+++ b/src/fcname.c
|
|
@@ -406,6 +406,8 @@ FcNameConvert (FcType type, const char *object, FcChar8 *string)
|
|
v.u.r = FcRangeCreateDouble (b, e);
|
|
break;
|
|
default:
|
|
+ /* No valid type to convert */
|
|
+ v.type = FcTypeVoid;
|
|
break;
|
|
}
|
|
return v;
|
|
--
|
|
2.45.2
|
|
|