20 lines
715 B
Diff
20 lines
715 B
Diff
commit 28e3a6653d8c3777b07e0128a0d97d46e586e311
|
|
Author: Jan Rybar <jrybar@redhat.com>
|
|
Date: Tue Oct 8 13:28:18 2019 +0000
|
|
|
|
jsauthority: Fix two minor memory leaks
|
|
|
|
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 (); */
|