Browse Source

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

Originally committed as revision 9474 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Måns Rullgård 18 years ago
parent
commit
85d366fd02
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavcodec/bitstream.c

+ 2
- 2
libavcodec/bitstream.c View File

@@ -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);
}


Loading…
Cancel
Save