Changeset 31c306a for src


Ignore:
Timestamp:
Nov 30, 2016, 3:38:29 PM (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, yinfft+
Children:
57405c1
Parents:
bb96d02
Message:

src/io/sink_apple_audio.c: avoid crash on empty file name

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/io/sink_apple_audio.c

    rbb96d02 r31c306a  
    6464  s->async = false;
    6565
    66   if (uri == NULL) {
     66  if ( (uri == NULL) || (strlen(uri) < 1) ) {
    6767    AUBIO_ERROR("sink_apple_audio: Aborted opening null path\n");
    6868    goto beach;
Note: See TracChangeset for help on using the changeset viewer.