mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-30 02:26:23 +00:00
good catch russell sorry i missed that.
fix magic number with proper sizeof git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.2@49412 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -2443,14 +2443,14 @@ static int leave_voicemail(struct ast_channel *chan, char *ext, struct leave_vm_
|
|||||||
else
|
else
|
||||||
ast_copy_string(ext_context, vmu->context, sizeof(ext_context));
|
ast_copy_string(ext_context, vmu->context, sizeof(ext_context));
|
||||||
if (ast_test_flag(options, OPT_BUSY_GREETING)) {
|
if (ast_test_flag(options, OPT_BUSY_GREETING)) {
|
||||||
res = create_dirpath(dest, 256, vmu->context, ext, "busy");
|
res = create_dirpath(dest, sizeof(dest), vmu->context, ext, "busy");
|
||||||
snprintf(prefile, sizeof(prefile), "%s%s/%s/busy", VM_SPOOL_DIR, vmu->context, ext);
|
snprintf(prefile, sizeof(prefile), "%s%s/%s/busy", VM_SPOOL_DIR, vmu->context, ext);
|
||||||
} else if (ast_test_flag(options, OPT_UNAVAIL_GREETING)) {
|
} else if (ast_test_flag(options, OPT_UNAVAIL_GREETING)) {
|
||||||
res = create_dirpath(dest, 256, vmu->context, ext, "unavail");
|
res = create_dirpath(dest, sizeof(dest), vmu->context, ext, "unavail");
|
||||||
snprintf(prefile, sizeof(prefile), "%s%s/%s/unavail", VM_SPOOL_DIR, vmu->context, ext);
|
snprintf(prefile, sizeof(prefile), "%s%s/%s/unavail", VM_SPOOL_DIR, vmu->context, ext);
|
||||||
}
|
}
|
||||||
snprintf(tempfile, sizeof(tempfile), "%s%s/%s/temp", VM_SPOOL_DIR, vmu->context, ext);
|
snprintf(tempfile, sizeof(tempfile), "%s%s/%s/temp", VM_SPOOL_DIR, vmu->context, ext);
|
||||||
if (!(res = create_dirpath(dest, 256, vmu->context, ext, "temp"))) {
|
if (!(res = create_dirpath(dest, sizeof(dest), vmu->context, ext, "temp"))) {
|
||||||
ast_log(LOG_WARNING, "Failed to make directory (%s)\n", tempfile);
|
ast_log(LOG_WARNING, "Failed to make directory (%s)\n", tempfile);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
@@ -4822,7 +4822,7 @@ static int vm_tempgreeting(struct ast_channel *chan, struct ast_vm_user *vmu, st
|
|||||||
adsi_transmit_message(chan, buf, bytes, ADSI_MSG_DISPLAY);
|
adsi_transmit_message(chan, buf, bytes, ADSI_MSG_DISPLAY);
|
||||||
}
|
}
|
||||||
snprintf(prefile,sizeof(prefile), "%s%s/%s/temp", VM_SPOOL_DIR, vmu->context, vms->username);
|
snprintf(prefile,sizeof(prefile), "%s%s/%s/temp", VM_SPOOL_DIR, vmu->context, vms->username);
|
||||||
if (!(res = create_dirpath(dest, 256, vmu->context, vms->username, "temp"))) {
|
if (!(res = create_dirpath(dest, sizeof(dest), vmu->context, vms->username, "temp"))) {
|
||||||
ast_log(LOG_WARNING, "Failed to create directory (%s).\n", prefile);
|
ast_log(LOG_WARNING, "Failed to create directory (%s).\n", prefile);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user