Original commit message from CVS:
* ext/taglib/gstid3v2mux.cc:
Don't attempt to write a NULL frame into the ID3 tag set when the
createFrame method returned NULL.
Fixes: #381857
Patch by: Jonathan Matthew <jonathan at 0kaolin wh9 net >
+2006-12-06 Jan Schmidt <thaytan@mad.scientist.com>
+
+ * ext/taglib/gstid3v2mux.cc:
+ Don't attempt to write a NULL frame into the ID3 tag set when the
+ createFrame method returned NULL.
+ Fixes: #381857
+ Patch by: Jonathan Matthew <jonathan at 0kaolin wh9 net >
+
2006-12-06 Jan Schmidt <thaytan@mad.scientist.com>
* gst/apetag/gstapedemux.c: (ape_demux_parse_tags):
GST_PTR_FORMAT, version, i, num_tags, GST_BUFFER_SIZE (buf), s);
frame = factory->createFrame (bytes, (TagLib::uint) version);
- id3v2tag->addFrame (frame);
+ if (frame)
+ id3v2tag->addFrame (frame);
}
}
}