stsquad / easytag

A git repo of the development series of EasyTag (as there was no official SCM). Since then the project has moved and is hosted at Gnome in it's own upstream repo.
https://gitlab.gnome.org/GNOME/easytag
GNU General Public License v2.0
29 stars 12 forks source link

FLAC: Fix segfault when setting picture description to "" #18

Closed bbarenblat closed 13 years ago

bbarenblat commented 13 years ago

This patch has Flac_Tag_Write_File_Tag make sure the picture description string is non-null before attempting to set it. (Passing a null pointer to FLAC__metadata_object_picture_setdescription violates that function's contract; see http://flac.sourceforge.net/api/group\_\_flac\_\_metadata\_object.html#ga43). This brings Flac_Tag_Write_File_Tag's behavior in line with that of the analogous functions for Ogg and ID3 tags.

stsquad commented 13 years ago

Thanks for you contribution.