Changes between Initial Version and Version 1 of Ticket #5910, comment 1


Ignore:
Timestamp:
04/13/2026 08:18:07 PM (19 hours ago)
Author:
Bruce Dubbs

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #5910, comment 1

    initial v1  
    22
    33It first looked like the pull request could be implemented with a single sed across three files, but the changes are slightly different for each file.  We can use:
    4 
     4{{{
    55sed -i '596 a\    bzs->next_in = NULL;'      Modules/_bz2module.c
    66sed -i '1122a\    lzs->next_in = NULL;'      Modules/_lzmamodule.c
    77sed -i '1677a\    self->zst.next_in = NULL;' Modules/zlibmodule.c
    8 
     8}}}
    99We need line numbers since there are multiple instances of '^error:' in the files.
    1010