You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/media-sound/freebirth/files/freebirth-0.3.2-segfault.patch

18 lines
519 B

https://bugs.gentoo.org/show_bug.cgi?id=320123
Index: freebirth-0.3.2/oscillator.c
===================================================================
--- freebirth-0.3.2.orig/oscillator.c
+++ freebirth-0.3.2/oscillator.c
@@ -237,8 +237,8 @@ event *event_freq_change_new(int seq_han
static sample_producer **get_children(osc *this)
{
- static sample_producer *no_kids[] = { NULL };
- return no_kids;
+ static sample_producer no_kids[] = {{ NULL }};
+ return &no_kids;
}
static char **get_header(osc *this)