| Index: content/browser/appcache/view_appcache_internals_job.cc
|
| diff --git a/content/browser/appcache/view_appcache_internals_job.cc b/content/browser/appcache/view_appcache_internals_job.cc
|
| index 3f8ac4f7e301885d4c272de18fc2b808169e0d63..481243d110910432c3b391cf8915d2094e03580a 100644
|
| --- a/content/browser/appcache/view_appcache_internals_job.cc
|
| +++ b/content/browser/appcache/view_appcache_internals_job.cc
|
| @@ -652,8 +652,8 @@ net::URLRequestJob* ViewAppCacheInternalsJobFactory::CreateJobForRequest(
|
| DecodeBase64URL(param));
|
|
|
| std::vector<std::string> tokens;
|
| - int64 response_id;
|
| - int64 group_id;
|
| + int64 response_id = 0;
|
| + int64 group_id = 0;
|
| if (command == kViewEntryCommand && Tokenize(param, "|", &tokens) == 4u &&
|
| base::StringToInt64(tokens[2], &response_id) &&
|
| base::StringToInt64(tokens[3], &group_id)) {
|
|
|