# HG changeset patch # User nenolod # Date 1141343449 28800 # Node ID c6fd2ce0f8e805beed2c675d90c06d4fc8346815 # Parent 04d803e33b533288054814b9597e00bdf9dd1a7a [svn] - oh shit, i just found the error, we were calling malloc(0)! diff -r 04d803e33b53 -r c6fd2ce0f8e8 Plugins/Input/mpg123/id3_frame.c --- a/Plugins/Input/mpg123/id3_frame.c Thu Mar 02 15:01:33 2006 -0800 +++ b/Plugins/Input/mpg123/id3_frame.c Thu Mar 02 15:50:49 2006 -0800 @@ -728,7 +728,7 @@ /* * Allocate frame. */ - frame = g_malloc0(sizeof(frame)); + frame = g_malloc0(sizeof(id3_frame)); frame->fr_owner = id3; frame->fr_raw_size = size;