Title: [211540] trunk/Source/WebCore
Revision
211540
Author
eric.carl...@apple.com
Date
2017-02-01 15:49:41 -0800 (Wed, 01 Feb 2017)

Log Message

[Mac] Update CARingBuffer class
https://bugs.webkit.org/show_bug.cgi?id=167656

Unreviewed build fix after r211539.

* platform/audio/mac/CAAudioStreamDescription.cpp:
(WebCore::CAAudioStreamDescription::CAAudioStreamDescription): Initialize a variable to fix
release builds.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (211539 => 211540)


--- trunk/Source/WebCore/ChangeLog	2017-02-01 23:38:04 UTC (rev 211539)
+++ trunk/Source/WebCore/ChangeLog	2017-02-01 23:49:41 UTC (rev 211540)
@@ -3,6 +3,17 @@
         [Mac] Update CARingBuffer class
         https://bugs.webkit.org/show_bug.cgi?id=167656
 
+        Unreviewed build fix after r211539.
+
+        * platform/audio/mac/CAAudioStreamDescription.cpp:
+        (WebCore::CAAudioStreamDescription::CAAudioStreamDescription): Initialize a variable to fix
+        release builds.
+
+2017-02-01  Eric Carlson  <eric.carl...@apple.com>
+
+        [Mac] Update CARingBuffer class
+        https://bugs.webkit.org/show_bug.cgi?id=167656
+
         Reviewed by Jer Noble.
 
         API test CARingBufferTest added.

Modified: trunk/Source/WebCore/platform/audio/mac/CAAudioStreamDescription.cpp (211539 => 211540)


--- trunk/Source/WebCore/platform/audio/mac/CAAudioStreamDescription.cpp	2017-02-01 23:38:04 UTC (rev 211539)
+++ trunk/Source/WebCore/platform/audio/mac/CAAudioStreamDescription.cpp	2017-02-01 23:49:41 UTC (rev 211540)
@@ -73,6 +73,8 @@
         break;
     case None:
         ASSERT_NOT_REACHED();
+        wordsize = 0;
+        break;
     }
 
     m_streamDescription.mBitsPerChannel = wordsize * 8;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to