mirror of
https://git.suyu.dev/suyu/mbedtls.git
synced 2025-12-21 21:36:21 +01:00
Fix -Wshadow warnings
Checked that it is supported by gcc 4.2.1 (FreeBSD 9). fixes #240
This commit is contained in:
parent
4d04cdcd12
commit
ea35666f50
7 changed files with 28 additions and 29 deletions
|
|
@ -389,7 +389,7 @@ void update_dropped( const packet *p )
|
|||
|
||||
while( cur < end )
|
||||
{
|
||||
size_t len = ( ( cur[11] << 8 ) | cur[12] ) + 13;
|
||||
len = ( ( cur[11] << 8 ) | cur[12] ) + 13;
|
||||
|
||||
id = len % sizeof( dropped );
|
||||
++dropped[id];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue