summaryrefslogtreecommitdiffstats
path: root/source/l/libvisual-plugins/60_no-const-vispluginfo-in-nastyfft.patch
diff options
context:
space:
mode:
author Patrick J Volkerding <volkerdi@slackware.com>2023-12-29 21:02:02 +0000
committer Eric Hameleers <alien@slackware.com>2023-12-29 22:35:49 +0100
commit142322a437e98e4a089d81f4511d2da2a8c1a8be (patch)
tree70ff5fc8778eb028d26ff5120d9b0cc164207b8f /source/l/libvisual-plugins/60_no-const-vispluginfo-in-nastyfft.patch
parenta65d0c1f5157916a0d03eab4e90469c8d1812786 (diff)
downloadcurrent-142322a437e98e4a089d81f4511d2da2a8c1a8be.tar.gz
current-142322a437e98e4a089d81f4511d2da2a8c1a8be.tar.xz
Fri Dec 29 21:02:02 UTC 202320231229210202
a/sysvinit-scripts-15.1-noarch-10.txz: Rebuilt. rc.M: Fix the name of the LDAP name service daemon (rc.nss-pam-ldap). Thanks to 0XBF. d/subversion-1.14.3-x86_64-1.txz: Upgraded. l/libvisual-0.4.2-x86_64-1.txz: Upgraded. l/libvisual-plugins-0.4.2-x86_64-1.txz: Upgraded. l/netpbm-11.05.01-x86_64-1.txz: Upgraded. xfce/thunar-4.18.9-x86_64-1.txz: Upgraded. testing/packages/grub-2.12-x86_64-1.txz: Added.
Diffstat (limited to 'source/l/libvisual-plugins/60_no-const-vispluginfo-in-nastyfft.patch')
-rw-r--r--source/l/libvisual-plugins/60_no-const-vispluginfo-in-nastyfft.patch18
1 files changed, 0 insertions, 18 deletions
diff --git a/source/l/libvisual-plugins/60_no-const-vispluginfo-in-nastyfft.patch b/source/l/libvisual-plugins/60_no-const-vispluginfo-in-nastyfft.patch
deleted file mode 100644
index 8e54e02cb..000000000
--- a/source/l/libvisual-plugins/60_no-const-vispluginfo-in-nastyfft.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-The static VisPluginInfo in nastyfft was declared as const, but libvisual write
-to its refcount when it visual_object_unref()s it (nasty!). This is broken at
-various levels: libvisual shouldn't be writing to this static plugin which is
-allocated by a dlopen()ed plugin, and it should also honor the "const
-VisPluginInfo" API... Anyway, nastyfft was the only occurrence and this fixes
-the crash for now; LP: #287448.
-
---- libvisual-plugins-0.4.0.dfsg.1.orig/plugins/actor/nastyfft/actor_nastyfft.c
-+++ libvisual-plugins-0.4.0.dfsg.1/plugins/actor/nastyfft/actor_nastyfft.c
-@@ -80,7 +80,7 @@
- .vidoptions.depth = VISUAL_VIDEO_DEPTH_GL
- }};
-
-- static const VisPluginInfo info[] = {{
-+ static VisPluginInfo info[] = {{
- .type = VISUAL_PLUGIN_TYPE_ACTOR,
-
- .plugname = N_("nastyfft"),