| Index: apps/benchmark/event.cc
|
| diff --git a/apps/benchmark/event.cc b/apps/benchmark/event.cc
|
| index bdaff1d64300592926a25b53957204059f4c3482..49b6a7036705016158b706ed5180145fca2c72ef 100644
|
| --- a/apps/benchmark/event.cc
|
| +++ b/apps/benchmark/event.cc
|
| @@ -55,7 +55,7 @@ bool ExtractKeyAsString(base::DictionaryValue* event_dict,
|
| }
|
|
|
| if (value->IsType(base::Value::TYPE_INTEGER)) {
|
| - int id_int;
|
| + int id_int = 0;
|
| // We already verified the type, so it should be an integer.
|
| DCHECK(value->GetAsInteger(&id_int));
|
| *output = base::IntToString(id_int);
|
|
|