diff options
-rw-r--r-- | FICS/playerdb.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/FICS/playerdb.c b/FICS/playerdb.c index d6ef838..084a1e7 100644 --- a/FICS/playerdb.c +++ b/FICS/playerdb.c @@ -327,6 +327,11 @@ player_remove(int p) { int i; + if (!player_num_ok_chk(p)) { + warnx("%s: invalid player number %d", __func__, p); + return -1; + } + player_decline_offers(p, -1, -1); player_withdraw_offers(p, -1, -1); |