summaryrefslogtreecommitdiffstats
path: root/abs/core/libvisual-plugins/60_no-const-vispluginfo-in-nastyfft.patch
diff options
context:
space:
mode:
authorBritney Fransen <brfransen@gmail.com>2011-08-07 05:44:00 (GMT)
committerBritney Fransen <brfransen@gmail.com>2011-08-07 05:44:00 (GMT)
commit2747bb3963f6a0e237e540301311f430f1876346 (patch)
treea31cb47f0e4e13370f4e52f28fdc564746047f26 /abs/core/libvisual-plugins/60_no-const-vispluginfo-in-nastyfft.patch
parentf6cb11445db39ac6c33047426893107a54520bb9 (diff)
parentf75cfa40ac713fbc58294c72d98aa77511e01524 (diff)
downloadlinhes_pkgbuild-2747bb3963f6a0e237e540301311f430f1876346.zip
linhes_pkgbuild-2747bb3963f6a0e237e540301311f430f1876346.tar.gz
linhes_pkgbuild-2747bb3963f6a0e237e540301311f430f1876346.tar.bz2
Merge branch 'testing' of knoppmyth.net:linhes_pkgbuild into testing
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"),