source: tests/src/test-delnull.c @ 988345f

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5pitchshiftsamplertimestretchyinfft+
Last change on this file since 988345f was c0916f2, checked in by Paul Brossier <piem@piem.org>, 11 years ago

tests/src/test-delnull.c: add comment

  • Property mode set to 100644
File size: 267 bytes
Line 
1#include <stdlib.h>
2#include <aubio.h>
3
4// Because aubio does not check for double free, this program will crash.
5// Programs that call these functions should check for null pointers.
6
7int main ()
8{
9  del_fvec(NULL);
10  del_lvec(NULL);
11  del_cvec(NULL);
12  return 0;
13}
Note: See TracBrowser for help on using the repository browser.