Brasero Code freeze break
- From: Philippe Rouquier <bonfire-app wanadoo fr>
- To: release-team gnome org
- Subject: Brasero Code freeze break
- Date: Sun, 15 Mar 2009 16:18:17 +0100
Hi,
reading the code one last time, I stumbled about this:
BraseroBurnResult
brasero_track_set_audio_info (BraseroTrack *track,
BraseroSongInfo *info)
{
BraseroTrackAudio *audio;
if (track->type.type != BRASERO_TRACK_TYPE_AUDIO)
return BRASERO_BURN_NOT_SUPPORTED;
audio = (BraseroTrackAudio *) track;
if (audio->info)
brasero_song_info_free (info);
audio->info = info;
return BRASERO_BURN_OK;
}
which is stupid since it sometimes destroys info variable contents before saving the pointer for later use.
So the simple fix is;
- brasero_song_info_free (info)
+ brasero_song_info_free (priv->info)
Can I change this for 2.26.0 please.
Thanks in advance,
Philippe
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]