summaryrefslogtreecommitdiffstats
path: root/libraries/id3lib/patches/id3lib.nullpointer_check.patch
diff options
context:
space:
mode:
author Matteo Bernardini2020-03-07 10:13:09 +0100
committer Matteo Bernardini2020-03-07 10:13:09 +0100
commit5a5dc1dabed18903b66c8a315dad1f8b753047a7 (patch)
tree70960ec22120e2b2947c2f7faba00ccf24069880 /libraries/id3lib/patches/id3lib.nullpointer_check.patch
parent1cd68324729b0dc6aceaa8a9a64c3f1afc36d9fd (diff)
downloadslackbuilds-5a5dc1dabed18903b66c8a315dad1f8b753047a7.tar.gz
20200307.1 global branch merge.current-20200307.1
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
Diffstat (limited to 'libraries/id3lib/patches/id3lib.nullpointer_check.patch')
-rw-r--r--libraries/id3lib/patches/id3lib.nullpointer_check.patch12
1 files changed, 0 insertions, 12 deletions
diff --git a/libraries/id3lib/patches/id3lib.nullpointer_check.patch b/libraries/id3lib/patches/id3lib.nullpointer_check.patch
deleted file mode 100644
index d4ca5d292f..0000000000
--- a/libraries/id3lib/patches/id3lib.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;
- }