Index: chrome/browser/safe_browsing/protocol_parser.cc |
diff --git a/chrome/browser/safe_browsing/protocol_parser.cc b/chrome/browser/safe_browsing/protocol_parser.cc |
index 1fb64ef7521eb8ac9a62748d8eec75e055ad4eab..a6e82a659222d50cc103c2bc6804914da499fa55 100644 |
--- a/chrome/browser/safe_browsing/protocol_parser.cc |
+++ b/chrome/browser/safe_browsing/protocol_parser.cc |
@@ -66,7 +66,8 @@ bool SafeBrowsingProtocolParser::ParseGetHash( |
SBFullHashResult full_hash; |
full_hash.list_name = cmd_parts[0]; |
- full_hash.add_chunk_id = atoi(cmd_parts[1].c_str()); |
+ // Ignore add_chunk_id (cmd_parts[1]), as we no longer use it with SB 2.3 |
+ // caching rules. |
Scott Hess - ex-Googler
2014/04/01 22:08:36
I'd rephrase to "Ignore cmd_parts[1] (add_chunk_id
mattm
2014/04/03 01:38:12
Done.
|
int full_hash_len = atoi(cmd_parts[2].c_str()); |
// Ignore hash results from lists we don't recognize. |