diff -Nru urfkill-0.6.0~20150318.103828.5539c0d.1/debian/changelog urfkill-0.6.0~20150318.103828.5539c0d.1/debian/changelog --- urfkill-0.6.0~20150318.103828.5539c0d.1/debian/changelog 2021-03-05 18:57:13.000000000 -0600 +++ urfkill-0.6.0~20150318.103828.5539c0d.1/debian/changelog 2021-03-30 09:36:17.000000000 -0500 @@ -1,3 +1,10 @@ +urfkill (0.6.0~20150318.103828.5539c0d.1-0ubuntu8) hirsute; urgency=medium + + * Fix segmentation fault that can be caused by freeing wrong variable + (LP: #1921919) + + -- William 'jawn-smith' Wilson Tue, 30 Mar 2021 09:36:17 -0500 + urfkill (0.6.0~20150318.103828.5539c0d.1-0ubuntu7) hirsute; urgency=medium * Drop build-dependency on obsolete dh-systemd diff -Nru urfkill-0.6.0~20150318.103828.5539c0d.1/debian/patches/fix_config_segfault.patch urfkill-0.6.0~20150318.103828.5539c0d.1/debian/patches/fix_config_segfault.patch --- urfkill-0.6.0~20150318.103828.5539c0d.1/debian/patches/fix_config_segfault.patch 1969-12-31 18:00:00.000000000 -0600 +++ urfkill-0.6.0~20150318.103828.5539c0d.1/debian/patches/fix_config_segfault.patch 2021-03-30 09:36:17.000000000 -0500 @@ -0,0 +1,21 @@ +Description: Fix Possible Segmentation fault seen on ppc64el + There was a possible segmentation fault when trying to free a variable + that had not yet been initialized. This was blocking the migration of + a version of this package in the proposed pocket +Origin: upstream, https://github.com/lcp/urfkill/commit/b39a72f9227838d4af5a9fda3430914a4b03a8e2 +Bug: https://github.com/lcp/urfkill/issues/11 +Bug-Ubuntu: https://bugs.launchpad.net/ubuntu/+source/urfkill/+bug/1921919 +Last-Update: 2021-03-30 +--- +This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ +--- a/src/urf-config.c ++++ b/src/urf-config.c +@@ -630,7 +630,7 @@ + * control to be enabled: there would not be a way to disable + * it for devices that don't have it. + */ +- options->key_control = FALSE; ++ priv->options.key_control = FALSE; + + return; + } diff -Nru urfkill-0.6.0~20150318.103828.5539c0d.1/debian/patches/series urfkill-0.6.0~20150318.103828.5539c0d.1/debian/patches/series --- urfkill-0.6.0~20150318.103828.5539c0d.1/debian/patches/series 2015-03-20 11:49:22.000000000 -0500 +++ urfkill-0.6.0~20150318.103828.5539c0d.1/debian/patches/series 2021-03-29 18:14:14.000000000 -0500 @@ -1,3 +1,4 @@ 01_fix_ftbfs_on_intltool.patch urfkill-debug-input.patch use-glib-gettext.patch +fix_config_segfault.patch