[SCM] WebKit Debian packaging branch, webkit-1.3, updated. upstream/1.3.7-4207-g178b198

dbates at webkit.org dbates at webkit.org
Sun Feb 20 23:38:58 UTC 2011


The following commit has been merged in the webkit-1.3 branch:
commit e48103dd1bb1005b6bfdcdcb70b11b75647b740e
Author: dbates at webkit.org <dbates at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sun Jan 23 00:33:55 2011 +0000

    2011-01-22  Chris Rogers  <crogers at google.com>
    
            Rubber-stamped by Anders Carlsson.
    
            Fix FFTFrameStub to compile properly
            https://bugs.webkit.org/show_bug.cgi?id=52969
    
            No new tests since this is a build fix.
    
            * platform/audio/FFTFrameStub.cpp:
            (WebCore::FFTFrame::FFTFrame):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@76456 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/Source/WebCore/ChangeLog b/Source/WebCore/ChangeLog
index 603ab98..bd83048 100644
--- a/Source/WebCore/ChangeLog
+++ b/Source/WebCore/ChangeLog
@@ -1,3 +1,15 @@
+2011-01-22  Chris Rogers  <crogers at google.com>
+
+        Rubber-stamped by Anders Carlsson.
+
+        Fix FFTFrameStub to compile properly
+        https://bugs.webkit.org/show_bug.cgi?id=52969
+
+        No new tests since this is a build fix.
+
+        * platform/audio/FFTFrameStub.cpp:
+        (WebCore::FFTFrame::FFTFrame):
+
 2011-01-22  Andrei Popescu  <andreip at google.com>
 
         Reviewed by Jeremy Orlow.
diff --git a/Source/WebCore/platform/audio/FFTFrameStub.cpp b/Source/WebCore/platform/audio/FFTFrameStub.cpp
index 17405c9..c76c0e2 100644
--- a/Source/WebCore/platform/audio/FFTFrameStub.cpp
+++ b/Source/WebCore/platform/audio/FFTFrameStub.cpp
@@ -36,9 +36,9 @@
 namespace WebCore {
 
 // Normal constructor: allocates for a given fftSize.
-FFTFrame::FFTFrame(unsigned fftSize)
-    : m_FFTSize(fftSize)
-    , m_log2FFTSize(static_cast<unsigned>(log2(fftSize)))
+FFTFrame::FFTFrame(unsigned /*fftSize*/)
+    : m_FFTSize(0)
+    , m_log2FFTSize(0)
 {
     ASSERT_NOT_REACHED();
 }

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list