Commit e7c8206e authored by Michael Niedermayer's avatar Michael Niedermayer

av_free -> av_freep

Originally committed as revision 5145 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 87f20c2f
......@@ -573,12 +573,12 @@ static void slice_buffer_destroy(slice_buffer * buf)
for (i = buf->data_count - 1; i >= 0; i--)
{
assert(buf->data_stack[i]);
av_free(buf->data_stack[i]);
av_freep(&buf->data_stack[i]);
}
assert(buf->data_stack);
av_free(buf->data_stack);
av_freep(&buf->data_stack);
assert(buf->line);
av_free(buf->line);
av_freep(&buf->line);
}
#ifdef __sgi
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment