- Timestamp:
- Dec 14, 2018, 2:59:14 PM (6 years ago)
- Branches:
- feature/autosink, feature/cnn, feature/crepe, fix/ffmpeg5, master
- Children:
- 0850e54
- Parents:
- 6031419
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/io/sink_vorbis.c
r6031419 r7107ed9 272 272 aubio_sink_vorbis_write(s); 273 273 274 if ( fclose(s->fid)) {274 if (s->fid && fclose(s->fid)) { 275 275 AUBIO_ERR("sink_vorbis: Error closing file %s (%s)\n", 276 276 s->path, strerror(errno)); 277 277 return AUBIO_FAIL; 278 278 } 279 s->fid = NULL; 279 280 return AUBIO_OK; 280 281 }
Note: See TracChangeset
for help on using the changeset viewer.