summaryrefslogtreecommitdiff
path: root/src/group.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/group.c')
-rw-r--r--src/group.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/group.c b/src/group.c
index 069b677..7f29bd8 100644
--- a/src/group.c
+++ b/src/group.c
@@ -554,7 +554,8 @@ group_delete_group (rp_group *g)
/* we can safely delete the group */
if (g == rp_current_group)
{
- set_current_group_1 (group_next_group ());
+ rp_group *next = group_last_group ();
+ set_current_group_1 (next ? next : group_next_group ());
}
list_del (&(g->node));