Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package libgepub for openSUSE:Factory checked in at 2023-06-20 16:47:51 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libgepub (Old) and /work/SRC/openSUSE:Factory/.libgepub.new.15902 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libgepub" Tue Jun 20 16:47:51 2023 rev:8 rq:1093704 version:0.7.1 Changes: -------- --- /work/SRC/openSUSE:Factory/libgepub/libgepub.changes 2022-09-21 14:42:55.453836791 +0200 +++ /work/SRC/openSUSE:Factory/.libgepub.new.15902/libgepub.changes 2023-06-20 16:47:56.519211285 +0200 @@ -1,0 +2,6 @@ +Wed Jun 14 15:07:21 UTC 2023 - Bjørn Lie <bjorn....@gmail.com> + +- Update to version 0.7.1: + + doc: Fix Crash in gepub_doc_new(). + +------------------------------------------------------------------- Old: ---- libgepub-0.7.0.tar.xz New: ---- libgepub-0.7.1.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libgepub.spec ++++++ --- /var/tmp/diff_new_pack.repnvr/_old 2023-06-20 16:47:57.135214988 +0200 +++ /var/tmp/diff_new_pack.repnvr/_new 2023-06-20 16:47:57.143215036 +0200 @@ -1,7 +1,7 @@ # # spec file for package libgepub # -# Copyright (c) 2022 SUSE LLC +# Copyright (c) 2023 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -21,7 +21,7 @@ %global sover 0 Name: libgepub -Version: 0.7.0 +Version: 0.7.1 Release: 0 Summary: EPUB document reader and render library License: LGPL-2.1-or-later ++++++ libgepub-0.7.0.tar.xz -> libgepub-0.7.1.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libgepub-0.7.0/NEWS new/libgepub-0.7.1/NEWS --- old/libgepub-0.7.0/NEWS 2022-08-30 10:59:21.000000000 +0200 +++ new/libgepub-0.7.1/NEWS 2023-06-13 19:02:54.000000000 +0200 @@ -1,3 +1,8 @@ +Version 0.7.1 +============= + + - doc: Fix Crash in gepub_doc_new() + Version 0.7.0 ============= diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libgepub-0.7.0/libgepub/gepub-doc.c new/libgepub-0.7.1/libgepub/gepub-doc.c --- old/libgepub-0.7.0/libgepub/gepub-doc.c 2022-08-30 10:59:21.000000000 +0200 +++ new/libgepub-0.7.1/libgepub/gepub-doc.c 2023-06-13 19:02:54.000000000 +0200 @@ -381,7 +381,10 @@ // TODO: get docTitle // TODO: parse metadata (dtb:totalPageCount, dtb:depth, dtb:maxPageNumber) - item = mapnode->children; + if (mapnode) { + item = mapnode->children; + } + while (item) { GepubNavPoint *navpoint = NULL; gchar *order; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libgepub-0.7.0/meson.build new/libgepub-0.7.1/meson.build --- old/libgepub-0.7.0/meson.build 2022-08-30 10:59:21.000000000 +0200 +++ new/libgepub-0.7.1/meson.build 2023-06-13 19:02:54.000000000 +0200 @@ -1,6 +1,6 @@ project( 'libgepub', 'c', - version: '0.7.0', + version: '0.7.1', license: 'LGPL2+', default_options: 'buildtype=debugoptimized', meson_version: '>= 0.46.0'