| Index: chromeos/dbus/shill_client_helper.cc
|
| diff --git a/chromeos/dbus/shill_client_helper.cc b/chromeos/dbus/shill_client_helper.cc
|
| index fbff20821739123542987e093454c7a2de9665ca..46ba9b5b8f5b26d72fe66154099b5f1ba1200f21 100644
|
| --- a/chromeos/dbus/shill_client_helper.cc
|
| +++ b/chromeos/dbus/shill_client_helper.cc
|
| @@ -465,7 +465,7 @@
|
| variant_writer.OpenArray("s", &array_writer);
|
| for (base::ListValue::const_iterator it = list->begin();
|
| it != list->end(); ++it) {
|
| - const base::Value& value = *it;
|
| + const base::Value& value = **it;
|
| std::string value_string;
|
| if (!value.GetAsString(&value_string))
|
| NET_LOG(ERROR) << "List value not a string: " << value;
|
|
|