mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-05 20:20:07 +00:00
Fix overflow in too many arguments (bug #806)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2064 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -1046,7 +1046,8 @@ static int ast_el_add_history(char *buf)
|
||||
|
||||
if (el_hist == NULL || el == NULL)
|
||||
ast_el_initialize();
|
||||
|
||||
if (strlen(buf) > 256)
|
||||
return 0;
|
||||
return (history(el_hist, &ev, H_ENTER, buf));
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user