Permalink
Browse files

Fix subscript[0] in torcontrol

  • Loading branch information...
1 parent b6856eb commit ac658e55ff75ed5689f87060087f2ed815c34fe0 @JeremyRubin JeremyRubin committed Feb 19, 2017
Showing with 1 addition and 1 deletion.
  1. +1 −1 src/torcontrol.cpp
View
@@ -662,7 +662,7 @@ void TorController::protocolinfo_cb(TorControlConnection& _conn, const TorContro
// _conn.Command("AUTHENTICATE " + HexStr(status_cookie.second), boost::bind(&TorController::auth_cb, this, _1, _2));
cookie = std::vector<uint8_t>(status_cookie.second.begin(), status_cookie.second.end());
clientNonce = std::vector<uint8_t>(TOR_NONCE_SIZE, 0);
- GetRandBytes(&clientNonce[0], TOR_NONCE_SIZE);
+ GetRandBytes(clientNonce.data(), TOR_NONCE_SIZE);
_conn.Command("AUTHCHALLENGE SAFECOOKIE " + HexStr(clientNonce), boost::bind(&TorController::authchallenge_cb, this, _1, _2));
} else {
if (status_cookie.first) {

0 comments on commit ac658e5

Please sign in to comment.