summaryrefslogtreecommitdiffstats
path: root/libraries/id3lib/patches/id3lib.nullpointer_check.patch
diff options
context:
space:
mode:
author Matteo Bernardini2021-04-10 17:02:43 +0200
committer Matteo Bernardini2021-04-10 17:02:43 +0200
commit97e000b8ce16626a160e2196627fb0c884dbcfbf (patch)
treec8bf51d3d2d2b60a4ca906996a8c17ed9cb3ffb9 /libraries/id3lib/patches/id3lib.nullpointer_check.patch
parentcf65c072371dbcb73b7ea6d75de27bb6b96899f7 (diff)
downloadslackbuilds-97e000b8ce16626a160e2196627fb0c884dbcfbf.tar.gz
20210410.1 global branch merge.current-20210410.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;
- }