986c0a7d5e
```sh git grep -l '^patch_args=-Np0' "srcpkgs/$1*/template" | while read template; do for p in ${template%/template}/patches/*; do sed -i ' \,^[+-][+-][+-] /dev/null,b /^[*-]\+ [0-9]\+\(,[0-9]\+\)\? [*-]\+$/b s,^[*][*][*] ,&a/, /^--- /{ s,\(^--- \)\(./\)*,\1a/, s,[.][Oo][Rr][Ii][Gg]\([ /]\),\1, s/[.][Oo][Rr][Ii][Gg]$// s/[.]patched[.]\([^.]\)/.\1/ h } /^+++ -/{ g s/^--- a/+++ b/ b } s,\(^+++ \)\(./\)*,\1b/, ' "$p" done sed -i '/^patch_args=/d' $template done ```
15 lines
539 B
Diff
15 lines
539 B
Diff
Description: Be more careful about libxml2 memory management
|
|
Author: Guido Trentalancia
|
|
Origin: https://github.com/itstool/itstool/pull/18
|
|
|
|
--- a/itstool.in 2018-11-08 19:11:00.000000000 +0100
|
|
+++ b/itstool.in 2019-05-13 11:02:18.619090267 +0200
|
|
@@ -1053,7 +1053,7 @@
|
|
else:
|
|
ctxt.replaceEntities(1)
|
|
ctxt.parseDocument()
|
|
- trnode = ctxt.doc().getRootElement()
|
|
+ trnode = ctxt.doc().getRootElement().copyNode(1)
|
|
try:
|
|
self._check_errors()
|
|
except libxml2.parserError:
|