| Index: chrome/browser/privacy_blacklist/blacklist.cc
|
| ===================================================================
|
| --- chrome/browser/privacy_blacklist/blacklist.cc (revision 49807)
|
| +++ chrome/browser/privacy_blacklist/blacklist.cc (working copy)
|
| @@ -43,7 +43,7 @@
|
|
|
| while (pattern[p] != '\0' && url[u] != '\0') {
|
| if (pattern[p] == '@') {
|
| - while (pattern[++p] == '@'); // Consecutive @ are redundant.
|
| + while (pattern[++p] == '@') {} // Consecutive @ are redundant.
|
|
|
| if (pattern[p] == '\0')
|
| return true; // Nothing to match after the @.
|
|
|