freebsd-ports/audio/x11amp/files/patch-x11amp::main.c
Marcel Moolenaar e8c21b2a19 Fix the bus error on close by clearing the playlist prior to cleaning
up the plugins.

PR: ports/56512
Submitted by: Mario Freitas <sub_0@netcabo.pt>
Pointed out by: Joseph Scott <joseph@randomnetworks.com>
2004-02-26 03:50:57 +00:00

12 lines
275 B
C

--- x11amp/main.c.orig Wed Feb 25 19:38:20 2004
+++ x11amp/main.c Wed Feb 25 19:38:52 2004
@@ -812,8 +812,8 @@
cleanup_ctrlsocket();
cleanup_skins();
playlist_stop_get_info_thread();
- cleanup_plugins();
playlist_clear();
+ cleanup_plugins();
gtk_main_quit();
}