Warning, /multimedia/kid3/packaging/patches/id3lib-3.8.3-60-id3lib-missing-nullpointer-check.patch is written in an unsupported language. File is not indexed.

0001 This patch adds a check for a null pointer
0002 --- a/src/header_tag.cpp
0003 +++ b/src/header_tag.cpp
0004 @@ -54,7 +54,7 @@
0005  {
0006    size_t bytesUsed = ID3_TagHeader::SIZE;
0007  
0008 -  if (_info->is_extended)
0009 +  if (_info && _info->is_extended)
0010    {
0011      bytesUsed += _info->extended_bytes;
0012    }