Xiph.org - flac.git/summary

Flac git repository

http://git.xiph.org/?p=flac.git;a=summary

Les articles publiés sur le site

  • Makefile.am : Remove old cruft

    5 juillet 2015, par Erik de Castro Lopo
    Makefile.am: Remove old cruft
    
    • [DH] Makefile.am
  • libFLAC : Improve fix in bc5113007a

    5 juillet 2015, par Erik de Castro Lopo
    libFLAC: Improve fix in bc5113007a
    
    The assert that was removed in bc5113007a, was a result of error
    handling in read_metadata_vorbiscomment_() which set obj->num_comments
    to zero, without freeing obj->comments and setting it to NULL.
    
    This commit also restores the assert that was removed.
    
    • [DH] src/libFLAC/metadata_object.c
    • [DH] src/libFLAC/stream_decoder.c
  • libFLAC : Remove un-needed assert

    4 juillet 2015, par Erik de Castro Lopo
    libFLAC: Remove un-needed assert
    
    This asset was firing when the build was configured with --enable-debug
    and the flac executable was then run under American Fuzzy Lop. Removing
    the assert did not cause any other problems, even under AFL.
    
    • [DH] src/libFLAC/metadata_object.c
  • replaygain : Remove dead assignment

    4 juillet 2015, par Erik de Castro Lopo
    replaygain: Remove dead assignment
    
    Patch-from: lvqcl <lvqcl.mail@gmail.com>
    
    • [DH] src/share/replaygain_analysis/replaygain_analysis.c
  • libFLAC : Remove un-needed test for NULL before free

    4 juillet 2015, par Erik de Castro Lopo
    libFLAC: Remove un-needed test for NULL before free
    
    Passing a NULL pointer to free() is a no-op.
    
    • [DH] src/libFLAC/metadata_object.c