1
0
mirror of https://github.com/minetest/minetest.git synced 2025-07-07 02:10:22 +02:00

Remove superfluous pointer null checks

This commit is contained in:
QrchackOfficial
2017-06-05 01:52:55 +02:00
committed by ShadowNinja
parent 7bfd53ba58
commit 5cc8ad946e
10 changed files with 20 additions and 46 deletions

View File

@ -97,8 +97,7 @@ public:
private:
void drop()
{
if(data)
delete[] data;
delete[] data;
}
T *data;
unsigned int m_size;
@ -214,8 +213,7 @@ private:
(*refcount)--;
if(*refcount == 0)
{
if(data)
delete[] data;
delete[] data;
delete refcount;
}
}

View File

@ -861,7 +861,7 @@ err_exit:
mpz_clear(usr->a);
mpz_clear(usr->A);
mpz_clear(usr->S);
if (usr->ng) delete_ng(usr->ng);
delete_ng(usr->ng);
srp_free(usr->username);
srp_free(usr->username_verifier);
if (usr->password) {