| Index: dbus/exported_object.cc
|
| diff --git a/dbus/exported_object.cc b/dbus/exported_object.cc
|
| index 7c4bada3bbcff3c38b796e84ca608df1e224928e..f9ddb62f3f55b4efcd6db6f08563da62ad47a2b1 100644
|
| --- a/dbus/exported_object.cc
|
| +++ b/dbus/exported_object.cc
|
| @@ -90,7 +90,7 @@ void ExportedObject::ExportMethod(const std::string& interface_name,
|
| void ExportedObject::SendSignal(Signal* signal) {
|
| // For signals, the object path should be set to the path to the sender
|
| // object, which is this exported object here.
|
| - signal->SetPath(object_path_);
|
| + CHECK(signal->SetPath(object_path_));
|
|
|
| // Increment the reference count so we can safely reference the
|
| // underlying signal message until the signal sending is complete. This
|
|
|