package/polkit: add upstream memory leak fix
This patch fixes two small memory leaks. Upstream commit: 28e3a6653d8c3777b07e0128a0d97d46e586e311 Signed-off-by: Adam Duskett <Aduskett@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
parent
3f885d9dfe
commit
ba70e29fea
28
package/polkit/0002-jsauthority-memleak.patch
Normal file
28
package/polkit/0002-jsauthority-memleak.patch
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
From 28e3a6653d8c3777b07e0128a0d97d46e586e311 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Jan Rybar <jrybar@redhat.com>
|
||||||
|
Date: Tue, 8 Oct 2019 13:28:18 +0000
|
||||||
|
Subject: [PATCH] jsauthority: Fix two minor memory leaks
|
||||||
|
|
||||||
|
(cherry picked from commit 28e3a6653d8c3777b07e0128a0d97d46e586e311)
|
||||||
|
Signed-off-by: Jan Rybar <jrybar@redhat.com>
|
||||||
|
Signed-off-by: Adam Duskett <aduskett@gmail.com>
|
||||||
|
---
|
||||||
|
src/polkitbackend/polkitbackendjsauthority.cpp | 2 ++
|
||||||
|
1 file changed, 2 insertions(+)
|
||||||
|
|
||||||
|
diff --git a/src/polkitbackend/polkitbackendjsauthority.cpp b/src/polkitbackend/polkitbackendjsauthority.cpp
|
||||||
|
index 9b752d1..e97b8aa 100644
|
||||||
|
--- a/src/polkitbackend/polkitbackendjsauthority.cpp
|
||||||
|
+++ b/src/polkitbackend/polkitbackendjsauthority.cpp
|
||||||
|
@@ -567,6 +567,8 @@ polkit_backend_js_authority_finalize (GObject *object)
|
||||||
|
g_strfreev (authority->priv->rules_dirs);
|
||||||
|
|
||||||
|
delete authority->priv->ac;
|
||||||
|
+ delete authority->priv->js_global;
|
||||||
|
+ delete authority->priv->js_polkit;
|
||||||
|
|
||||||
|
JS_DestroyContext (authority->priv->cx);
|
||||||
|
/* JS_ShutDown (); */
|
||||||
|
--
|
||||||
|
2.24.1
|
||||||
|
|
Loading…
Reference in New Issue
Block a user