26 lines
924 B
Diff
26 lines
924 B
Diff
From abaf73f99c300ffe6c38dc7d1ce93ab09043f88a Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Caol=C3=A1n=20McNamara?= <caolanm@redhat.com>
|
|
Date: Wed, 4 Nov 2020 11:02:21 +0000
|
|
Subject: [PATCH 2/8] resource leak
|
|
|
|
Change-Id: I1abd8acef55d5bdb4744ecf1a62d8e1396de0e3f
|
|
---
|
|
vcl/unx/gtk3/a11y/gtk3atktextattributes.cxx | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/vcl/unx/gtk3/a11y/gtk3atktextattributes.cxx b/vcl/unx/gtk3/a11y/gtk3atktextattributes.cxx
|
|
index 52f0a34cd3a2..483283cadab5 100644
|
|
--- a/vcl/unx/gtk3/a11y/gtk3atktextattributes.cxx
|
|
+++ b/vcl/unx/gtk3/a11y/gtk3atktextattributes.cxx
|
|
@@ -987,6 +987,7 @@ TabStopList2String( const uno::Any& rAny, bool default_tabs )
|
|
{
|
|
gchar * old_tab_str = ret;
|
|
ret = g_strconcat(old_tab_str, " ", tab_str, nullptr);
|
|
+ g_free( tab_str );
|
|
g_free( old_tab_str );
|
|
}
|
|
else
|
|
--
|
|
2.28.0
|
|
|