GNOME Bugzilla – Bug 681904
FFT library calls exit
Last modified: 2012-08-15 23:13:37 UTC
Would probably be better if it didn't. gst-plugins-base/gst-libs/gst/fft $ git grep exit kiss_fft_f32.h: your compiler output to call this before you exit. kiss_fft_f64.h: your compiler output to call this before you exit. kiss_fft_s16.h: your compiler output to call this before you exit. kiss_fft_s32.h: your compiler output to call this before you exit. kiss_fftr_f32.c: exit (1); kiss_fftr_f32.c: exit (1); kiss_fftr_f64.c: exit (1); kiss_fftr_f64.c: exit (1); kiss_fftr_s16.c: exit (1); kiss_fftr_s16.c: exit (1); kiss_fftr_s32.c: exit (1); kiss_fftr_s32.c: exit (1);
commit d1dc65d6ee46bb99d9dbbb95adf51df4604e95e1 Author: Tim-Philipp Müller <tim@centricular.net> Date: Thu Aug 16 00:11:00 2012 +0100 fft: shouldn't ever call exit() Libraries shouldn't ever just call exit(). Let's hope we'll remember to cherry-pick this commit again if we ever update these files. https://bugzilla.gnome.org/show_bug.cgi?id=681904