Skip to content

Commit

Permalink
Fix some errors reported by clang static analyzer.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ilya Zhuravlev committed Jan 12, 2014
1 parent a358c04 commit a4c5f10
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/environment.cpp
Expand Up @@ -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(): "
Expand Down
3 changes: 3 additions & 0 deletions src/script/lua_api/l_object.cpp
Expand Up @@ -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);
Expand Down

0 comments on commit a4c5f10

Please sign in to comment.