diff options
author | 2016-11-02 21:14:16 +0100 | |
---|---|---|
committer | 2016-11-02 21:35:01 +0100 | |
commit | 2e56c8d3ad3600f4ac7a50384d5ca9952796347f (patch) | |
tree | 635322eb350ade6e918bbc86355475f924e94556 /www-plugins/gnash/files/gnash-0.8.10-libva-1.6_0001.patch | |
parent | x11-misc/qlipper: version bump (diff) | |
download | gentoo-2e56c8d3ad3600f4ac7a50384d5ca9952796347f.tar.gz gentoo-2e56c8d3ad3600f4ac7a50384d5ca9952796347f.tar.bz2 gentoo-2e56c8d3ad3600f4ac7a50384d5ca9952796347f.zip |
www-plugins/gnash: Remove 0.8.10_p20160329
Package-Manager: portage-2.3.2
Diffstat (limited to 'www-plugins/gnash/files/gnash-0.8.10-libva-1.6_0001.patch')
-rw-r--r-- | www-plugins/gnash/files/gnash-0.8.10-libva-1.6_0001.patch | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/www-plugins/gnash/files/gnash-0.8.10-libva-1.6_0001.patch b/www-plugins/gnash/files/gnash-0.8.10-libva-1.6_0001.patch deleted file mode 100644 index 4c25a98dba52..000000000000 --- a/www-plugins/gnash/files/gnash-0.8.10-libva-1.6_0001.patch +++ /dev/null @@ -1,28 +0,0 @@ -From f5016cc9399c9ffd3c5d32c67bb28fac285559c6 Mon Sep 17 00:00:00 2001 -From: Bastiaan Jacques <bastiaan@bjacques.org> -Date: Wed, 09 Sep 2015 19:25:31 +0000 -Subject: Compilation fix. See Savannah #44636. - -Also skip useless NULL check. ---- -diff --git a/gui/gtk/gtk_glue_agg_vaapi.cpp b/gui/gtk/gtk_glue_agg_vaapi.cpp -index 1eda283..6209e89 100644 ---- a/gui/gtk/gtk_glue_agg_vaapi.cpp -+++ b/gui/gtk/gtk_glue_agg_vaapi.cpp -@@ -301,11 +301,9 @@ GtkAggVaapiGlue::getVideoWindow(std::shared_ptr<VaapiSurface> surface, - return NULL; - - if (!context->getData()) { -- std::unique_ptr<VaapiContextData> contextData; -- contextData.reset(new VaapiVideoWindow(parent_window, rect)); -- if (!contextData.get()) -- return NULL; -- context->setData(contextData); -+ context->setData( -+ std::unique_ptr<VaapiContextData>( -+ new VaapiVideoWindow(parent_window, rect))); - } - return dynamic_cast<VaapiVideoWindow *>(context->getData()); - } --- -cgit v0.9.0.2 |