Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package girara for openSUSE:Factory checked in at 2023-08-31 13:46:17 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/girara (Old) and /work/SRC/openSUSE:Factory/.girara.new.1766 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "girara" Thu Aug 31 13:46:17 2023 rev:16 rq:1108209 version:0.4.0 Changes: -------- --- /work/SRC/openSUSE:Factory/girara/girara.changes 2023-02-27 12:55:22.971427848 +0100 +++ /work/SRC/openSUSE:Factory/.girara.new.1766/girara.changes 2023-08-31 13:52:24.298563811 +0200 @@ -1,0 +2,6 @@ +Mon Aug 28 09:50:00 UTC 2023 - Andrea Manzini <[email protected]> + +- update to 0.4.0 + * Fix use after free + +------------------------------------------------------------------- Old: ---- girara-0.3.9.tar.xz New: ---- girara-0.4.0.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ girara.spec ++++++ --- /var/tmp/diff_new_pack.Z8reN8/_old 2023-08-31 13:52:25.318600269 +0200 +++ /var/tmp/diff_new_pack.Z8reN8/_new 2023-08-31 13:52:25.322600412 +0200 @@ -19,7 +19,7 @@ %define libname libgirara-gtk3 %define so_ver 3 Name: girara -Version: 0.3.9 +Version: 0.4.0 Release: 0 Summary: Graphical user interface library License: Zlib ++++++ girara-0.3.9.tar.xz -> girara-0.4.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/girara-0.3.9/girara/datastructures.c new/girara-0.4.0/girara/datastructures.c --- old/girara-0.3.9/girara/datastructures.c 2023-01-15 16:58:16.000000000 +0100 +++ new/girara-0.4.0/girara/datastructures.c 2023-03-18 21:17:00.000000000 +0100 @@ -457,9 +457,10 @@ GNode* childnode = node->node->children; while (childnode != NULL) { + GNode* nextnode = childnode->next; girara_tree_node_data_t* childnodedata = childnode->data; girara_node_free(childnodedata->node); - childnode = childnode->next; + childnode = nextnode; } g_node_destroy(node->node); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/girara-0.3.9/meson.build new/girara-0.4.0/meson.build --- old/girara-0.3.9/meson.build 2023-01-15 16:58:16.000000000 +0100 +++ new/girara-0.4.0/meson.build 2023-03-18 21:17:00.000000000 +0100 @@ -1,5 +1,5 @@ project('girara', 'c', - version: '0.3.9', + version: '0.4.0', meson_version: '>=0.56', default_options: ['c_std=c11', 'warning_level=3'], )
