python-treq: bump to version 16.12.0
[buildroot-gz.git] / package / flex / 0002-fix-CVE-2016-6354.patch
blobb0c780b99341486fce20873c9c07322d9e148240
1 From a5cbe929ac3255d371e698f62dc256afe7006466 Mon Sep 17 00:00:00 2001
2 From: Will Estes <westes575@gmail.com>
3 Date: Sat, 27 Feb 2016 11:56:05 -0500
4 Subject: [PATCH] Fixed incorrect integer type
6 Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
7 ---
8 Status: upstream
10 flex.skl | 2 +-
11 1 file changed, 1 insertion(+), 1 deletion(-)
13 diff --git a/src/flex.skl b/src/flex.skl
14 index 36a526a..64f853d 100644
15 --- a/flex.skl
16 +++ b/flex.skl
17 @@ -1703,7 +1703,7 @@ int yyFlexLexer::yy_get_next_buffer()
19 else
21 - yy_size_t num_to_read =
22 + int num_to_read =
23 YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1;
25 while ( num_to_read <= 0 )