[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

[Git][debian-mate-team/atril][master] 4 commits: debian/patches: Add 1002-avoid-crash-on-certain-epub-files.patch. Avoid...



Title: GitLab

Mike Gabriel pushed to branch master at Debian and Ubuntu MATE Packaging Team / atril

Commits:

  • b1ea71ad
    by Mike Gabriel at 2024-01-06T06:51:15+01:00
    debian/patches: Add 1002-avoid-crash-on-certain-epub-files.patch. Avoid crashes when opening certain epub files. (Closes: #972715).
    
  • 3a815ad4
    by Mike Gabriel at 2024-01-06T07:09:56+01:00
    upload to unstable (debian/1.26.1-2)
    
  • 3ecc521b
    by Mike Gabriel at 2024-01-06T07:29:51+01:00
    1002-avoid-crash-on-certain-epub-files.patch: amend rebasing typo
    
  • 1f611f3d
    by Mike Gabriel at 2024-01-06T07:37:53+01:00
    upload to unstable (debian/1.26.1-3)
    

3 changed files:

Changes:

  • debian/changelog
    1
    +atril (1.26.1-3) unstable; urgency=medium
    
    2
    +
    
    3
    +  * debian/patches: Amend typo in 1002-avoid-crash-on-certain-epub-files.patch.
    
    4
    +    Regression fix for upload 1.26.1-2.
    
    5
    +
    
    6
    + -- Mike Gabriel <sunweaver@debian.org>  Sat, 06 Jan 2024 07:29:56 +0100
    
    7
    +
    
    8
    +atril (1.26.1-2) unstable; urgency=medium
    
    9
    +
    
    10
    +  * debian/patches:
    
    11
    +    + Add 1002-avoid-crash-on-certain-epub-files.patch. Avoid crashes when
    
    12
    +      opening certain epub files. (Closes: #972715).
    
    13
    +
    
    14
    + -- Mike Gabriel <sunweaver@debian.org>  Sat, 06 Jan 2024 07:09:22 +0100
    
    15
    +
    
    1 16
     atril (1.26.1-1) unstable; urgency=medium
    
    2 17
     
    
    3 18
       * New upstream release.
    
    ... ... @@ -35,6 +50,7 @@ atril (1.26.0-1) unstable; urgency=medium
    35 50
     
    
    36 51
       [ Martin Wimpress ]
    
    37 52
       * New upstream release.
    
    53
    +    - ev-sidebar-links: Optimize reverse link lookup for a page. (Closes: #965275).
    
    38 54
       * debian/*.symbols:
    
    39 55
         + Update symbols for MATE 1.26.
    
    40 56
     
    

  • debian/patches/1002-avoid-crash-on-certain-epub-files.patch
    1
    +Description: Avoid crash on certain epub files
    
    2
    +
    
    3
    +Author: Bernhard Übelacker <bernhardu@mailbox.org>
    
    4
    +Bug-Debian: https://bugs.debian.org/972715
    
    5
    +Forwarded: no
    
    6
    +Last-Update: 2020-11-01
    
    7
    +
    
    8
    +--- a/backend/epub/epub-document.c
    
    9
    ++++ b/backend/epub/epub-document.c
    
    10
    +@@ -1295,7 +1295,7 @@
    
    11
    +             xml_parse_children_of_node(navLabel,(xmlChar*)"text",NULL,NULL);
    
    12
    +             linknode *newnode = g_new0(linknode,1);
    
    13
    +             newnode->linktext = NULL;
    
    14
    +-            while (newnode->linktext == NULL) {
    
    15
    ++            while (xmlretval && newnode->linktext == NULL) {
    
    16
    +                 newnode->linktext = (gchar*)xml_get_data_from_node(xmlretval,XML_KEYWORD,NULL);
    
    17
    +                 xmlretval = xmlretval->next;
    
    18
    +             }
    
    19
    +@@ -1613,7 +1613,7 @@
    
    20
    +     contentListNode *pagedata;
    
    21
    + 
    
    22
    +     guint flag=0;
    
    23
    +-    while (!flag) {
    
    24
    ++    while (listiter && !flag) {
    
    25
    +         pagedata = listiter->data;
    
    26
    +         if (link_present_on_page(Link->pagelink, pagedata->value)) {
    
    27
    +             flag=1;

  • debian/patches/series
    1 1
     1001-webkit2gtk4.1.patch
    
    2
    +1002-avoid-crash-on-certain-epub-files.patch


  • Reply to: