https://origsvn.digium.com/svn/asterisk/branches/1.4
........
r135597 | seanbright | 2008-08-05 09:25:00 -0400 (Tue, 05 Aug 2008) | 1 line
Use PATH_MAX for filenames
........
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@135598
65c4cc65-6c06-0410-ace0-
fbb531ad65f3
static char *complete_fn(const char *word, int state)
{
char *c, *d;
- char filename[256];
+ char filename[PATH_MAX];
if (word[0] == '/')
ast_copy_string(filename, word, sizeof(filename));