mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-20 08:40:16 +00:00
finish reverting my pass through the tree to remove checks of the result of
ast_strdupa, this one is revision 8362 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@8401 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -3705,7 +3705,12 @@ ast_group_t ast_get_group(char *s)
|
||||
int start=0, finish=0, x;
|
||||
ast_group_t group = 0;
|
||||
|
||||
c = copy = ast_strdupa(s);
|
||||
copy = ast_strdupa(s);
|
||||
if (!copy) {
|
||||
ast_log(LOG_ERROR, "Out of memory\n");
|
||||
return 0;
|
||||
}
|
||||
c = copy;
|
||||
|
||||
while ((piece = strsep(&c, ","))) {
|
||||
if (sscanf(piece, "%d-%d", &start, &finish) == 2) {
|
||||
|
||||
Reference in New Issue
Block a user