Fix some errors reported by clang static analyzer.

This commit is contained in:
Ilya Zhuravlev 2014-01-12 22:07:35 +04:00
parent a358c040f2
commit a4c5f10ecf
2 changed files with 5 additions and 1 deletions

View File

@ -1005,7 +1005,8 @@ void ServerEnvironment::clearAllObjects()
}
num_blocks_checked++;
if(num_blocks_checked % report_interval == 0){
if(report_interval != 0 &&
num_blocks_checked % report_interval == 0){
float percent = 100.0 * (float)num_blocks_checked /
loadable_blocks.size();
infostream<<"ServerEnvironment::clearAllObjects(): "

View File

@ -944,12 +944,15 @@ int ObjectRef::l_hud_change(lua_State *L)
case HUD_STAT_DIR:
e->dir = lua_tonumber(L, 4);
value = &e->dir;
break;
case HUD_STAT_ALIGN:
e->align = read_v2f(L, 4);
value = &e->align;
break;
case HUD_STAT_OFFSET:
e->offset = read_v2f(L, 4);
value = &e->offset;
break;
}
getServer(L)->hudChange(player, id, stat, value);