Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(44)

Unified Diff: chromeos/dbus/bluetooth_input_client.cc

Issue 11734014: Bluetooth: Fix error_message parsing on a dbus connect error response. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 7 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/dbus/bluetooth_input_client.cc
diff --git a/chromeos/dbus/bluetooth_input_client.cc b/chromeos/dbus/bluetooth_input_client.cc
index 62d370d664e4f1617ec871eef86616b2a70a8d34..e02677cbb8c8832e1272c1075c268202261a896d 100644
--- a/chromeos/dbus/bluetooth_input_client.cc
+++ b/chromeos/dbus/bluetooth_input_client.cc
@@ -209,7 +209,7 @@ class BluetoothInputClientImpl: public BluetoothInputClient,
if (response) {
dbus::MessageReader reader(response);
error_name = response->GetErrorName();
- error_message = reader.PopString(&error_message);
+ reader.PopString(&error_message);
} else {
error_name = kNoResponseError;
error_message = "";
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698