shithub: aubio

ref: d4c09320c569a1e7e2c646978e37b06a2f34b774
dir: /tests/src/test-delnull.c/

View raw version
#include <stdlib.h>
#include <aubio.h>

// Because aubio does not check for double free, this program will crash.
// Programs that call these functions should check for null pointers.

int main ()
{
  del_fvec(NULL);
  del_lvec(NULL);
  del_cvec(NULL);
  return 0;
}