branch merge

This commit is contained in:
Valery V Yatsko 2008-08-17 09:33:47 +04:00
commit e6451707d9
2 changed files with 2 additions and 2 deletions

View File

@ -567,7 +567,7 @@ rb_bh_gc(rb_bh * bh)
offset = (uintptr_t)b->elems;
for (i = 0; i < bh->elemsPerBlock; i++, offset += (uintptr_t)bh->elemSize)
{
rb_dlinkDelete(((rb_dlink_node *)(offset + offset_pad)), &bh->free_list);
rb_dlinkDelete(((rb_dlink_node *)offset), &bh->free_list);
}
rb_dlinkDelete(&b->node, &bh->block_list);
free_block(b->elems, b->alloc_size);

View File

@ -324,7 +324,7 @@ static void safelist_channel_named(struct Client *source_p, const char *name)
return;
}
if (ShowChannel(source_p, chptr))
if (!SecretChannel(chptr) || IsMember(source_p, chptr))
sendto_one(source_p, form_str(RPL_LIST), me.name, source_p->name, chptr->chname,
rb_dlink_list_length(&chptr->members),
chptr->topic == NULL ? "" : chptr->topic);