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:
Sean Bright 2026-08-02 16:05:47 +00:00 committed by github-actions[bot]
parent 2720b1025e
commit 73064ff3bf

View file

@ -14176,7 +14176,7 @@ static int append_vmu_info_astman(
const char* actionid
)
{
int new;
int new = 0;
int old;
char *mailbox;
int ret;