Skip to content
Snippets Groups Projects
Commit b21b5f55 authored by Joshua Colp's avatar Joshua Colp
Browse files

Merged revisions 104665 via svnmerge from

https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r104665 | file | 2008-02-27 13:41:40 -0400 (Wed, 27 Feb 2008) | 2 lines

Bump up the buffer by 2.

........


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@104687 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent ce29e467
No related branches found
No related tags found
No related merge requests found
......@@ -546,7 +546,7 @@ struct ast_filestream *ast_openstream_full(struct ast_channel *chan, const char
}
if (preflang == NULL)
preflang = "";
buflen = strlen(preflang) + strlen(filename) + 2;
buflen = strlen(preflang) + strlen(filename) + 4;
buf = alloca(buflen);
if (buf == NULL)
return NULL;
......
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