Changes between Initial Version and Version 1 of Ticket #5910, comment 1
- Timestamp:
- 04/13/2026 08:18:07 PM (19 hours ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #5910, comment 1
initial v1 2 2 3 3 It 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 {{{ 5 5 sed -i '596 a\ bzs->next_in = NULL;' Modules/_bz2module.c 6 6 sed -i '1122a\ lzs->next_in = NULL;' Modules/_lzmamodule.c 7 7 sed -i '1677a\ self->zst.next_in = NULL;' Modules/zlibmodule.c 8 8 }}} 9 9 We need line numbers since there are multiple instances of '^error:' in the files. 10 10
