summaryrefslogtreecommitdiffstats
path: root/abs/core/libvisual-plugins/60_no-const-vispluginfo-in-nastyfft.patch
diff options
context:
space:
mode:
authorCecil <knoppmyth@gmail.com>2011-08-07 05:56:53 (GMT)
committerCecil <knoppmyth@gmail.com>2011-08-07 05:56:53 (GMT)
commit6d4afc9179a1618670fc99f97504794aefa92cd4 (patch)
treec95b147219a3fcab9ea18d84059e9e1a37a83716 /abs/core/libvisual-plugins/60_no-const-vispluginfo-in-nastyfft.patch
parentdadf5c5986521b1941b0364a7c27a7e47a900bb7 (diff)
downloadlinhes_pkgbuild-6d4afc9179a1618670fc99f97504794aefa92cd4.zip
linhes_pkgbuild-6d4afc9179a1618670fc99f97504794aefa92cd4.tar.gz
linhes_pkgbuild-6d4afc9179a1618670fc99f97504794aefa92cd4.tar.bz2
libvisual-plugins:Bumped to latest.
Diffstat (limited to 'abs/core/libvisual-plugins/60_no-const-vispluginfo-in-nastyfft.patch')
-rw-r--r--abs/core/libvisual-plugins/60_no-const-vispluginfo-in-nastyfft.patch18
1 files changed, 0 insertions, 18 deletions
diff --git a/abs/core/libvisual-plugins/60_no-const-vispluginfo-in-nastyfft.patch b/abs/core/libvisual-plugins/60_no-const-vispluginfo-in-nastyfft.patch
deleted file mode 100644
index 8e54e02..0000000
--- a/abs/core/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"),