| Index: trunk/src/chrome/browser/internal_auth.cc
|
| ===================================================================
|
| --- trunk/src/chrome/browser/internal_auth.cc (revision 239920)
|
| +++ trunk/src/chrome/browser/internal_auth.cc (working copy)
|
| @@ -166,7 +166,10 @@
|
| return;
|
| }
|
| std::string hmac_base64;
|
| - base::Base64Encode(hmac, &hmac_base64);
|
| + if (!base::Base64Encode(hmac, &hmac_base64)) {
|
| + NOTREACHED();
|
| + return;
|
| + }
|
| if (hmac_base64.size() != BASE64_PER_RAW(kHMACSizeInBytes)) {
|
| NOTREACHED();
|
| return;
|
|
|