Fix more warnings

This commit is contained in:
Tim Angus 2014-09-01 13:03:06 +01:00
parent 6665ea4a49
commit 7277d8d6e7
3 changed files with 8 additions and 4 deletions

View File

@ -527,13 +527,13 @@ int BotVoiceChatCommand(bot_state_t *bs, int mode, char *voiceChat) {
Q_strncpyz(buf, voiceChat, sizeof(buf));
cmd = buf;
for (ptr = cmd; *cmd && *cmd > ' '; cmd++);
for (; *cmd && *cmd > ' '; cmd++);
while (*cmd && *cmd <= ' ') *cmd++ = '\0';
//voiceOnly = atoi(ptr);
for (ptr = cmd; *cmd && *cmd > ' '; cmd++);
while (*cmd && *cmd <= ' ') *cmd++ = '\0';
clientNum = atoi(ptr);
for (ptr = cmd; *cmd && *cmd > ' '; cmd++);
for (; *cmd && *cmd > ' '; cmd++);
while (*cmd && *cmd <= ' ') *cmd++ = '\0';
//color = atoi(ptr);

View File

@ -368,10 +368,14 @@ void RespawnItem( gentity_t *ent ) {
choice = rand() % count;
for (count = 0, ent = master; count < choice; ent = ent->teamchain, count++)
for (count = 0, ent = master; ent && count < choice; ent = ent->teamchain, count++)
;
}
if (!ent) {
return;
}
ent->r.contents = CONTENTS_TRIGGER;
ent->s.eFlags &= ~EF_NODRAW;
ent->r.svFlags &= ~SVF_NOCLIENT;

View File

@ -1614,7 +1614,7 @@ int R_StitchPatches( int grid1num, int grid2num ) {
}
for (m = 0; m < 2; m++) {
if (grid2->height >= MAX_GRID_SIZE)
if (!grid2 || grid2->height >= MAX_GRID_SIZE)
break;
if (m) offset2 = grid2->width-1;
else offset2 = 0;