mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-05 12:16:00 +00:00
replace malloc+memset with a call to ast_calloc, also removing the error
message that is no longer necessary (issue #6205) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@7985 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -1359,13 +1359,10 @@ static struct adsi_script *compile_script(char *script)
|
|||||||
ast_log(LOG_WARNING, "Can't open file '%s'\n", fn);
|
ast_log(LOG_WARNING, "Can't open file '%s'\n", fn);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
scr = malloc(sizeof(struct adsi_script));
|
if (!(scr = ast_calloc(1, sizeof(*scr)))) {
|
||||||
if (!scr) {
|
|
||||||
fclose(f);
|
fclose(f);
|
||||||
ast_log(LOG_WARNING, "Out of memory loading script '%s'\n", fn);
|
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
memset(scr, 0, sizeof(struct adsi_script));
|
|
||||||
/* Create "main" as first subroutine */
|
/* Create "main" as first subroutine */
|
||||||
getsubbyname(scr, "main", NULL, 0);
|
getsubbyname(scr, "main", NULL, 0);
|
||||||
while(!feof(f)) {
|
while(!feof(f)) {
|
||||||
|
Reference in New Issue
Block a user