Skip to content
Snippets Groups Projects
Commit bbaa9c81 authored by zuul's avatar zuul Committed by Gerrit Code Review
Browse files

Merge "app_voicemail.c: Fix IMAP compile error."

parents ef1e0a65 0a300082
No related branches found
No related tags found
No related merge requests found
......@@ -3263,7 +3263,8 @@ void mm_lsub(MAILSTREAM * stream, int delim, char *mailbox, long attributes)
void mm_status(MAILSTREAM * stream, char *mailbox, MAILSTATUS * status)
{
struct ast_str *str;
if (!DEBUG_ATLEAST(5) || !(str = ast_str_create(MAX_OBJECT_FIELD))) {
if (!DEBUG_ATLEAST(5) || !(str = ast_str_create(256))) {
return;
}
 
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment