| Index: trunk/src/remoting/host/token_validator_factory_impl.cc
|
| ===================================================================
|
| --- trunk/src/remoting/host/token_validator_factory_impl.cc (revision 239942)
|
| +++ trunk/src/remoting/host/token_validator_factory_impl.cc (working copy)
|
| @@ -107,8 +107,7 @@
|
| std::string nonce_bytes;
|
| crypto::RandBytes(WriteInto(&nonce_bytes, kNonceLength + 1), kNonceLength);
|
| std::string nonce;
|
| - bool success = base::Base64Encode(nonce_bytes, &nonce);
|
| - DCHECK(success);
|
| + base::Base64Encode(nonce_bytes, &nonce);
|
| return "client:" + remote_jid + " host:" + local_jid + " nonce:" + nonce;
|
| }
|
|
|
|
|