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

eric.carlson at apple.com eric.carlson at apple.com
Wed Dec 22 14:45:47 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit a365e1dd923e014375f37e826bad430b8b81fc52
Author: eric.carlson at apple.com <eric.carlson at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Oct 19 17:10:20 2010 +0000

    2010-10-19  Eric Carlson  <eric.carlson at apple.com>
    
            Not reviewed. Build fix.
    
            * html/HTMLMediaElement.cpp:
            (WebCore::HTMLMediaElement::selectNextSourceChild): Initialize variable to avoid Windows
            "potentially uninitialized local variable" warning.
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@70065 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 5550d79..d52d7d2 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,5 +1,13 @@
 2010-10-19  Eric Carlson  <eric.carlson at apple.com>
 
+        Not reviewed. Build fix.
+
+        * html/HTMLMediaElement.cpp:
+        (WebCore::HTMLMediaElement::selectNextSourceChild): Initialize variable to avoid Windows
+        "potentially uninitialized local variable" warning.
+
+2010-10-19  Eric Carlson  <eric.carlson at apple.com>
+
         Reviewed by Darin Adler.
 
         https://bugs.webkit.org/show_bug.cgi?id=46763
diff --git a/WebCore/html/HTMLMediaElement.cpp b/WebCore/html/HTMLMediaElement.cpp
index 362c771..daabc27 100644
--- a/WebCore/html/HTMLMediaElement.cpp
+++ b/WebCore/html/HTMLMediaElement.cpp
@@ -1606,7 +1606,7 @@ KURL HTMLMediaElement::selectNextSourceChild(ContentType *contentType, InvalidSo
 
     KURL mediaURL;
     Node* node;
-    HTMLSourceElement* source;
+    HTMLSourceElement* source = 0;
     bool lookingForStartNode = m_nextChildNodeToConsider;
     bool canUse = false;
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list