Ignore:
Timestamp:
Apr 22, 2016, 8:08:27 PM (8 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, pitchshift, sampler, timestretch, yinfft+
Children:
6f42c16
Parents:
2d0e3fc
Message:

src/io/: also copy null ending char

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/io/source_wavread.c

    r2d0e3fc rd2be104  
    8888
    8989  if (s->path) AUBIO_FREE(s->path);
    90   s->path = AUBIO_ARRAY(char_t, strnlen(path, PATH_MAX));
    91   strncpy(s->path, path, strnlen(path, PATH_MAX));
     90  s->path = AUBIO_ARRAY(char_t, strnlen(path, PATH_MAX) + 1);
     91  strncpy(s->path, path, strnlen(path, PATH_MAX) + 1);
    9292
    9393  s->samplerate = samplerate;
Note: See TracChangeset for help on using the changeset viewer.