mirror of
https://github.com/luanti-org/luanti.git
synced 2025-10-13 08:35:20 +02:00
Fixed null pointer dereference errors found by cppcheck
This commit is contained in:
@@ -4109,7 +4109,7 @@ void Server::UpdateCrafting(u16 peer_id)
|
||||
InventoryList *clist = player->inventory.getList("craft");
|
||||
InventoryList *rlist = player->inventory.getList("craftresult");
|
||||
|
||||
if(rlist->getUsedSlots() == 0)
|
||||
if(rlist && rlist->getUsedSlots() == 0)
|
||||
player->craftresult_is_preview = true;
|
||||
|
||||
if(rlist && player->craftresult_is_preview)
|
||||
|
Reference in New Issue
Block a user