| Index: gpu/command_buffer/service/mailbox_manager.cc
|
| diff --git a/gpu/command_buffer/service/mailbox_manager.cc b/gpu/command_buffer/service/mailbox_manager.cc
|
| index ec7ad948bb273d61ff2e7bfc0d94448dbefcb041..cd93bc5ccc0dfa6fbb3d3248900ef692ee6cbb3a 100644
|
| --- a/gpu/command_buffer/service/mailbox_manager.cc
|
| +++ b/gpu/command_buffer/service/mailbox_manager.cc
|
| @@ -36,10 +36,8 @@ TextureDefinition* MailboxManager::ConsumeTexture(unsigned target,
|
|
|
| TextureDefinitionMap::iterator it =
|
| textures_.find(TargetName(target, name));
|
| - if (it == textures_.end()) {
|
| - NOTREACHED();
|
| + if (it == textures_.end())
|
| return NULL;
|
| - }
|
|
|
| TextureDefinition* definition = it->second.definition.release();
|
| textures_.erase(it);
|
|
|