blob: fe3b1c12d2dc755a50b3f69ecbac75ce2e1bfec8 [file] [log] [blame]
Patrick Williams92b42cb2022-09-03 06:53:57 -05001From 3b84fe4375292d00ebb605a5917e66129fe5f0cb Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Wed, 24 Aug 2022 23:26:46 -0700
4Subject: [PATCH] py_base_stacktrace.c: include glib.h
5
6This file has references to g_free from glib-2.0 which needs this header
7
8Upstream-Status: Submitted [https://github.com/abrt/satyr/pull/333]
9Signed-off-by: Khem Raj <raj.khem@gmail.com>
10---
11 python/py_base_stacktrace.c | 2 +-
12 1 file changed, 1 insertion(+), 1 deletion(-)
13
14diff --git a/python/py_base_stacktrace.c b/python/py_base_stacktrace.c
15index b9bd16c..301db84 100644
16--- a/python/py_base_stacktrace.c
17+++ b/python/py_base_stacktrace.c
18@@ -17,7 +17,7 @@
19 with this program; if not, write to the Free Software Foundation, Inc.,
20 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 */
22-
23+#include <glib.h>
24 #include "py_common.h"
25 #include "py_base_thread.h"
26 #include "py_base_stacktrace.h"
27--
282.37.2
29