| Index: third_party/WebKit/Source/platform/audio/ReverbInputBuffer.cpp
|
| diff --git a/third_party/WebKit/Source/platform/audio/ReverbInputBuffer.cpp b/third_party/WebKit/Source/platform/audio/ReverbInputBuffer.cpp
|
| index 61f0830713db0b67afce05355f28c448454ced1f..75fddbbabe26305e753bf392c7fd173ed851513c 100644
|
| --- a/third_party/WebKit/Source/platform/audio/ReverbInputBuffer.cpp
|
| +++ b/third_party/WebKit/Source/platform/audio/ReverbInputBuffer.cpp
|
| @@ -57,7 +57,8 @@ float* ReverbInputBuffer::directReadFrom(int* readIndex,
|
| *readIndex + numberOfFrames <= bufferLength;
|
| ASSERT(isPointerGood);
|
| if (!isPointerGood) {
|
| - // Should never happen in practice but return pointer to start of buffer (avoid crash)
|
| + // Should never happen in practice but return pointer to start of buffer
|
| + // (avoid crash)
|
| if (readIndex)
|
| *readIndex = 0;
|
| return m_buffer.data();
|
|
|