mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-02 11:06:31 +00:00
various: Fix GCC 11 compilation issues.
test_voicemail_api: Use empty char* for empty_msg_ids. chan_skinny: Fix size of calledParty to be maximum extension. menuselect: Change Makefile to stop deprecated warnings. Added comments test_linkedlist: 'bogus' variable was manually allocated from a macro and the test fails if this happens but the compiler couldn't 'see' this and returns a warning. memset to all 0's after allocation. chan_ooh323: Fixed various indentation issues that triggered misleading indentation warnings. ASTERISK-29682 Reported by: George Joseph Change-Id: If4fe42222c8444dc16828a42731ee53b4ce5cbbe
This commit is contained in:
committed by
Friendly Automation
parent
cfae5224e3
commit
99a1a427a9
@@ -148,6 +148,7 @@ AST_TEST_DEFINE(single_ll_tests)
|
||||
if (!(bogus = ast_alloca(sizeof(*bogus)))) {
|
||||
return AST_TEST_FAIL;
|
||||
}
|
||||
memset(bogus, 0, sizeof(*bogus));
|
||||
|
||||
if (AST_LIST_REMOVE(&test_list, bogus, list)) {
|
||||
ast_test_status_update(test, "AST_LIST_REMOVE should safely return NULL for missing element from empty list\n");
|
||||
|
@@ -1156,7 +1156,7 @@ AST_TEST_DEFINE(voicemail_api_off_nominal_remove)
|
||||
{
|
||||
const char *inbox_msg_id;
|
||||
const char *multi_msg_ids[2];
|
||||
const char *empty_msg_ids[] = { };
|
||||
const char *empty_msg_ids = "";
|
||||
|
||||
switch (cmd) {
|
||||
case TEST_INIT:
|
||||
@@ -1207,7 +1207,7 @@ AST_TEST_DEFINE(voicemail_api_off_nominal_remove)
|
||||
VM_API_REMOVE_MESSAGE_OFF_NOMINAL("test_vm_api_2345", "default", 2, "INBOX", multi_msg_ids);
|
||||
|
||||
ast_test_status_update(test, "Test removing no messages with no message numbers\n");
|
||||
VM_API_REMOVE_MESSAGE_OFF_NOMINAL("test_vm_api_1234", "default", 0, "INBOX", empty_msg_ids);
|
||||
VM_API_REMOVE_MESSAGE_OFF_NOMINAL("test_vm_api_1234", "default", 0, "INBOX", &empty_msg_ids);
|
||||
|
||||
ast_test_status_update(test, "Test removing multiple messages with an invalid size specifier\n");
|
||||
VM_API_REMOVE_MESSAGE_OFF_NOMINAL("test_vm_api_2345", "default", -30, "INBOX", multi_msg_ids);
|
||||
@@ -1330,7 +1330,7 @@ AST_TEST_DEFINE(voicemail_api_off_nominal_forward)
|
||||
const char *inbox_msg_id;
|
||||
const char *multi_msg_ids[4];
|
||||
|
||||
const char *empty_msg_ids[] = { };
|
||||
const char *empty_msg_ids = "";
|
||||
|
||||
switch (cmd) {
|
||||
case TEST_INIT:
|
||||
@@ -1393,7 +1393,7 @@ AST_TEST_DEFINE(voicemail_api_off_nominal_forward)
|
||||
VM_API_FORWARD_MESSAGE_OFF_NOMINAL("test_vm_api_1234", "default", "INBOX", "test_vm_api_2345", "default", NULL, 1, &inbox_msg_id, 0);
|
||||
|
||||
ast_test_status_update(test, "Test forwarding when no messages are select\n");
|
||||
VM_API_FORWARD_MESSAGE_OFF_NOMINAL("test_vm_api_1234", "default", "INBOX", "test_vm_api_2345", "default", "INBOX", 0, empty_msg_ids, 0);
|
||||
VM_API_FORWARD_MESSAGE_OFF_NOMINAL("test_vm_api_1234", "default", "INBOX", "test_vm_api_2345", "default", "INBOX", 0, &empty_msg_ids, 0);
|
||||
|
||||
ast_test_status_update(test, "Test forwarding a message that doesn't exist\n");
|
||||
inbox_msg_id = "POOPOO";
|
||||
|
Reference in New Issue
Block a user