mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-05 12:16:00 +00:00
Merged revisions 18436 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.2 ........ r18436 | tilghman | 2006-04-07 17:07:38 -0500 (Fri, 07 Apr 2006) | 2 lines Bug 6913 - fix for possible buffer overflow ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@18437 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -55,7 +55,7 @@ static struct ast_frame *jpeg_read_image(int fd, int len)
|
||||
struct ast_frame fr;
|
||||
int res;
|
||||
char buf[65536];
|
||||
if (len > sizeof(buf)) {
|
||||
if (len > sizeof(buf) || len < 0) {
|
||||
ast_log(LOG_WARNING, "JPEG image too large to read\n");
|
||||
return NULL;
|
||||
}
|
||||
|
Reference in New Issue
Block a user