[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

commit-queue at webkit.org commit-queue at webkit.org
Wed Dec 22 12:53:44 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit c4becbc455c482160aba3729d6e8369ff5e37d42
Author: commit-queue at webkit.org <commit-queue at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Sep 1 04:27:38 2010 +0000

    2010-08-31  Martin Robinson  <mrobinson at igalia.com>
    
            Reviewed by Adam Barth.
    
            [GTK] warning: unused variable "queryResult"
            https://bugs.webkit.org/show_bug.cgi?id=44998
    
            No new tests as functionality has not changed.
    
            * platform/graphics/gstreamer/GStreamerGWorld.cpp:
            (WebCore::GStreamerGWorld::enterFullscreen): Move queryResult within the gstreamer
            version guards, where it is used.
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@66573 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index a2e2ac0..58c1cbc 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,16 @@
+2010-08-31  Martin Robinson  <mrobinson at igalia.com>
+
+        Reviewed by Adam Barth.
+
+        [GTK] warning: unused variable "queryResult"
+        https://bugs.webkit.org/show_bug.cgi?id=44998
+
+        No new tests as functionality has not changed.
+
+        * platform/graphics/gstreamer/GStreamerGWorld.cpp:
+        (WebCore::GStreamerGWorld::enterFullscreen): Move queryResult within the gstreamer
+        version guards, where it is used.
+
 2010-08-31  Dave Hyatt  <hyatt at apple.com>
 
         Reviewed by Adam Roben.
diff --git a/WebCore/platform/graphics/gstreamer/GStreamerGWorld.cpp b/WebCore/platform/graphics/gstreamer/GStreamerGWorld.cpp
index 96a639b..f222cde 100644
--- a/WebCore/platform/graphics/gstreamer/GStreamerGWorld.cpp
+++ b/WebCore/platform/graphics/gstreamer/GStreamerGWorld.cpp
@@ -113,10 +113,10 @@ bool GStreamerGWorld::enterFullscreen()
     // the new tee branch downstream.
 
     GstQuery* query = gst_query_new_segment(GST_FORMAT_TIME);
-    gboolean queryResult = gst_element_query(m_pipeline, query);
 
     // See https://bugzilla.gnome.org/show_bug.cgi?id=620490.
 #if GST_CHECK_VERSION(0, 10, 30)
+    gboolean queryResult = gst_element_query(m_pipeline, query);
     if (!queryResult) {
         gst_query_unref(query);
         gst_object_unref(GST_OBJECT(srcPad));

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list