https://origsvn.digium.com/svn/asterisk/branches/1.4
........
r97697 | file | 2008-01-10 11:07:12 -0400 (Thu, 10 Jan 2008) | 6 lines
Don't try to copy the category from the group if no category exists.
(closes issue #11724)
Reported by: IgorG
Patches:
group_count.v1.patch uploaded by IgorG (license 20)
........
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@97698
65c4cc65-6c06-0410-ace0-
fbb531ad65f3
}
if (gi) {
ast_copy_string(group, gi->group, sizeof(group));
- ast_copy_string(category, gi->category, sizeof(category));
+ if (!ast_strlen_zero(gi->category))
+ ast_copy_string(category, gi->category, sizeof(category));
}
ast_app_group_list_unlock();
}