mirror of
https://github.com/asterisk/asterisk
synced 2026-08-07 10:32:13 -04:00
app_voicemail.c: Fix may-be-uninitialized error
A pointer to `new` is passed to `inboxcount(...)` which increments the pointed-to value.
This commit is contained in:
parent
2720b1025e
commit
73064ff3bf
1 changed files with 1 additions and 1 deletions
|
|
@ -14176,7 +14176,7 @@ static int append_vmu_info_astman(
|
|||
const char* actionid
|
||||
)
|
||||
{
|
||||
int new;
|
||||
int new = 0;
|
||||
int old;
|
||||
char *mailbox;
|
||||
int ret;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue