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 ```
12 lines
273 B
Diff
12 lines
273 B
Diff
This patch adds a check for a null pointer
|
|
--- a/src/header_tag.cpp
|
|
+++ b/src/header_tag.cpp
|
|
@@ -54,7 +54,7 @@
|
|
{
|
|
size_t bytesUsed = ID3_TagHeader::SIZE;
|
|
|
|
- if (_info->is_extended)
|
|
+ if (_info && _info->is_extended)
|
|
{
|
|
bytesUsed += _info->extended_bytes;
|
|
}
|