Commit 85d366fd authored by Måns Rullgård's avatar Måns Rullgård

use av_freep() in free_vlc() and failed init_vlc()

Originally committed as revision 9474 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent ed77a6c9
......@@ -261,7 +261,7 @@ int init_vlc_sparse(VLC *vlc, int nb_bits, int nb_codes,
codes, codes_wrap, codes_size,
symbols, symbols_wrap, symbols_size,
0, 0, flags) < 0) {
av_free(vlc->table);
av_freep(&vlc->table);
return -1;
}
return 0;
......@@ -270,6 +270,6 @@ int init_vlc_sparse(VLC *vlc, int nb_bits, int nb_codes,
void free_vlc(VLC *vlc)
{
av_free(vlc->table);
av_freep(&vlc->table);
}
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