After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 681904 - FFT library calls exit
FFT library calls exit
Status: RESOLVED FIXED
Product: GStreamer
Classification: Platform
Component: gst-plugins-base
0.11.x
Other Linux
: Normal normal
: 0.11.x
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2012-08-15 10:59 UTC by Bastien Nocera
Modified: 2012-08-15 23:13 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Bastien Nocera 2012-08-15 10:59:19 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);
Comment 1 Tim-Philipp Müller 2012-08-15 23:13:37 UTC
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