Codebase list gnome-twitch / b3cd386
Remove old patches Tim Dengel 7 years ago
3 changed file(s) with 0 addition(s) and 43 deletion(s). Raw diff Collapse all Expand all
+0
-19
debian/patches/0001-Update-meson-version-number.patch less more
0 From: Tim Dengel <tim.dengel.debian@gmail.com>
1 Date: Tue, 18 Oct 2016 20:35:34 +0200
2 Subject: Update meson version number
3
4 ---
5 meson.build | 2 +-
6 1 file changed, 1 insertion(+), 1 deletion(-)
7
8 diff --git a/meson.build b/meson.build
9 index bf22230..996119f 100644
10 --- a/meson.build
11 +++ b/meson.build
12 @@ -1,5 +1,5 @@
13 project('gnome-twitch', 'c',
14 - version : '0.3.0',
15 + version : '0.3.1',
16 meson_version : '>=0.31.0',
17 license : 'GPL3')
18
+0
-22
debian/patches/0002-Fix-segfault.patch less more
0 From: Tim Dengel <tim.dengel.debian@gmail.com>
1 Date: Tue, 18 Oct 2016 20:47:59 +0200
2 Subject: Fix segfault
3
4 ---
5 src/gt-channel.c | 3 +++
6 1 file changed, 3 insertions(+)
7
8 diff --git a/src/gt-channel.c b/src/gt-channel.c
9 index 2fcc016..6aa49cc 100644
10 --- a/src/gt-channel.c
11 +++ b/src/gt-channel.c
12 @@ -137,6 +137,9 @@ update_set_cb(gpointer udata)
13 GtChannel* self = GT_CHANNEL(udata);
14 GtChannelRawData* raw = g_object_get_data(G_OBJECT(self), "raw-data");
15
16 + if(!raw)
17 + return FALSE;
18 +
19 g_info("{GtChannel} Finished update '%s'", raw->name);
20
21 gt_channel_update_from_raw_data(self, raw);
+0
-2
debian/patches/series less more
0 0001-Update-meson-version-number.patch
1 0002-Fix-segfault.patch