Changeset 1878b50 for src


Ignore:
Timestamp:
Jan 8, 2019, 6:49:56 PM (5 years ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
feature/autosink, feature/cnn, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/timestretch, fix/ffmpeg5, master
Children:
ba9e3a8
Parents:
bec1396
git-author:
Paul Brossier <piem@piem.org> (01/08/19 18:34:30)
git-committer:
Paul Brossier <piem@piem.org> (01/08/19 18:49:56)
Message:

[source] remove assert so tests pass in debug mode

source and sink are the only objects which check for null pointers
in del_, keep it this way to prevent breaking older code.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/io/source.c

    rbec1396 r1878b50  
    139139
    140140void del_aubio_source(aubio_source_t * s) {
    141   AUBIO_ASSERT(s);
     141  //AUBIO_ASSERT(s);
    142142  if (s && s->s_del && s->source)
    143143    s->s_del((void *)s->source);
Note: See TracChangeset for help on using the changeset viewer.