src/io/source_sndfile.c: allow closing twice
authorPaul Brossier <piem@piem.org>
Mon, 27 Feb 2017 00:34:10 +0000 (01:34 +0100)
committerPaul Brossier <piem@piem.org>
Mon, 27 Feb 2017 00:34:10 +0000 (01:34 +0100)
src/io/source_sndfile.c

index 4c830ba..eea2ffc 100644 (file)
@@ -320,7 +320,7 @@ uint_t aubio_source_sndfile_seek (aubio_source_sndfile_t * s, uint_t pos) {
 
 uint_t aubio_source_sndfile_close (aubio_source_sndfile_t *s) {
   if (!s->handle) {
-    return AUBIO_FAIL;
+    return AUBIO_OK;
   }
   if(sf_close(s->handle)) {
     AUBIO_ERR("source_sndfile: Error closing file %s: %s\n", s->path, sf_strerror (NULL));