diff options
Diffstat (limited to 'unmaintained/id3lib/60-id3lib-missing-nullpointer-check.patch')
-rw-r--r-- | unmaintained/id3lib/60-id3lib-missing-nullpointer-check.patch | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/unmaintained/id3lib/60-id3lib-missing-nullpointer-check.patch b/unmaintained/id3lib/60-id3lib-missing-nullpointer-check.patch deleted file mode 100644 index d4ca5d292f..0000000000 --- a/unmaintained/id3lib/60-id3lib-missing-nullpointer-check.patch +++ /dev/null @@ -1,12 +0,0 @@ -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; - } |