mirror of
https://github.com/minetest/minetest.git
synced 2024-11-27 10:03:45 +01:00
Use free rather than delete for malloc'd memory
This commit is contained in:
parent
6286c555d4
commit
3e6f824e6c
@ -1343,7 +1343,7 @@ void Client::ProcessData(u8 *data, u32 datasize, u16 sender_peer_id)
|
||||
<<name << ": server ->"<<sha1_texture <<" client -> "<<digest_string<<std::endl;
|
||||
}
|
||||
|
||||
delete(digest);
|
||||
free(digest);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -4307,7 +4307,7 @@ void Server::PrepareTextures() {
|
||||
unsigned char *digest = sha1.getDigest();
|
||||
std::string digest_string = base64_encode(digest, 20);
|
||||
|
||||
delete(digest);
|
||||
free(digest);
|
||||
|
||||
// Put in list
|
||||
this->m_Textures[tname] = TextureInformation(tpath,digest_string);
|
||||
|
Loading…
Reference in New Issue
Block a user