| Index: media/audio/linux/alsa_output.cc
|
| diff --git a/media/audio/linux/alsa_output.cc b/media/audio/linux/alsa_output.cc
|
| index 96be896b4029811289533a9e4a5f1e6117ef8a7b..2d5c1212d8938effc46621ad834ed34fba333ef7 100644
|
| --- a/media/audio/linux/alsa_output.cc
|
| +++ b/media/audio/linux/alsa_output.cc
|
| @@ -411,7 +411,7 @@ void AlsaPcmOutputStream::BufferPacket(bool* source_exhausted) {
|
| if (packet_size > 0) {
|
| packet->SetDataSize(packet_size);
|
| // Add the packet to the buffer.
|
| - buffer_->Append(packet);
|
| + buffer_->Append(packet.get());
|
| } else {
|
| *source_exhausted = true;
|
| }
|
|
|