Changeset 23be736


Ignore:
Timestamp:
Feb 27, 2017, 1:15:39 AM (7 years ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, sampler
Children:
e4a8882
Parents:
6dda1c0
Message:

python/ext/py-source.c: raise on closing file failed

File:
1 edited

Legend:

Unmodified
Added
Removed
  • python/ext/py-source.c

    r6dda1c0 r23be736  
    243243Pyaubio_source_close (Py_source *self, PyObject *unused)
    244244{
    245   aubio_source_close (self->o);
     245  if (aubio_source_close(self->o) != 0) return NULL;
    246246  Py_RETURN_NONE;
    247247}
Note: See TracChangeset for help on using the changeset viewer.