| Index: dbus/object_proxy.cc
|
| diff --git a/dbus/object_proxy.cc b/dbus/object_proxy.cc
|
| index 5d9d8e842f0a43b2aad95c778d4c8141f47bf0fc..ec35c2df9e7e5dc5dccadae1579adb395326fa45 100644
|
| --- a/dbus/object_proxy.cc
|
| +++ b/dbus/object_proxy.cc
|
| @@ -288,7 +288,8 @@ void ObjectProxy::StartAsyncMethodCall(int timeout_ms,
|
| &ObjectProxy::OnPendingCallIsCompleteThunk,
|
| data,
|
| &DeleteVoidPointer<OnPendingCallIsCompleteData>);
|
| - CHECK(success) << "Unable to allocate memory";
|
| + // Unable to allocate memory
|
| + CHECK(success);
|
| pending_calls_.insert(pending_call);
|
|
|
| // It's now safe to unref the request message.
|
|
|