| Index: media/filters/h264_bitstream_buffer.cc
|
| diff --git a/media/filters/h264_bitstream_buffer.cc b/media/filters/h264_bitstream_buffer.cc
|
| index cb81b086ffdaae8818f7bc904bcb817ce3949d5d..dffce7cf25665e93146d32a3f020956f016e806d 100644
|
| --- a/media/filters/h264_bitstream_buffer.cc
|
| +++ b/media/filters/h264_bitstream_buffer.cc
|
| @@ -32,7 +32,8 @@ void H264BitstreamBuffer::Reset() {
|
|
|
| void H264BitstreamBuffer::Grow() {
|
| data_ = static_cast<uint8_t*>(realloc(data_, capacity_ + kGrowBytes));
|
| - CHECK(data_) << "Failed growing the buffer";
|
| + // Failed growing the buffer
|
| + CHECK(data_);
|
| capacity_ += kGrowBytes;
|
| }
|
|
|
|
|