1
0
mirror of https://github.com/luanti-org/luanti.git synced 2025-10-13 08:35:20 +02:00

Fix srp.cpp:815 leak

Thanks @Zeno-
This commit is contained in:
est31
2015-07-27 07:44:48 +02:00
parent c30a2d6854
commit f336d3ffb6
2 changed files with 1 additions and 4 deletions

View File

@@ -974,6 +974,7 @@ void Client::deleteAuthData()
case AUTH_MECHANISM_NONE:
break;
}
m_chosen_auth_mech = AUTH_MECHANISM_NONE;
}
@@ -1060,7 +1061,6 @@ void Client::startAuth(AuthMechanism chosen_auth_mechanism)
NetworkPacket resp_pkt(TOSERVER_SRP_BYTES_A, 0);
resp_pkt << std::string(bytes_A, len_A) << based_on;
free(bytes_A);
Send(&resp_pkt);
break;
}