Title: [110330] trunk/Source/WebCore
Revision
110330
Author
[email protected]
Date
2012-03-09 14:24:17 -0800 (Fri, 09 Mar 2012)

Log Message

Fix uninitialized variable in DynamicsCompressor
https://bugs.webkit.org/show_bug.cgi?id=80724

Reviewed by James Robinson.

* platform/audio/DynamicsCompressor.cpp:
(WebCore::DynamicsCompressor::DynamicsCompressor):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (110329 => 110330)


--- trunk/Source/WebCore/ChangeLog	2012-03-09 22:04:25 UTC (rev 110329)
+++ trunk/Source/WebCore/ChangeLog	2012-03-09 22:24:17 UTC (rev 110330)
@@ -1,3 +1,13 @@
+2012-03-09  Chris Rogers  <[email protected]>
+
+        Fix uninitialized variable in DynamicsCompressor
+        https://bugs.webkit.org/show_bug.cgi?id=80724
+
+        Reviewed by James Robinson.
+
+        * platform/audio/DynamicsCompressor.cpp:
+        (WebCore::DynamicsCompressor::DynamicsCompressor):
+
 2012-03-09  Erik Arvidsson  <[email protected]>
 
         [V8] Undo text position adjustment for attribute event handlers

Modified: trunk/Source/WebCore/platform/audio/DynamicsCompressor.cpp (110329 => 110330)


--- trunk/Source/WebCore/platform/audio/DynamicsCompressor.cpp	2012-03-09 22:04:25 UTC (rev 110329)
+++ trunk/Source/WebCore/platform/audio/DynamicsCompressor.cpp	2012-03-09 22:24:17 UTC (rev 110330)
@@ -42,6 +42,7 @@
     
 DynamicsCompressor::DynamicsCompressor(float sampleRate, unsigned numberOfChannels)
     : m_numberOfChannels(numberOfChannels)
+    , m_sampleRate(sampleRate)
     , m_compressor(sampleRate, numberOfChannels)
 {
     // Uninitialized state - for parameter recalculation.
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to