mirror of
https://github.com/yuzu-emu/mbedtls
synced 2024-11-24 08:48:17 +00:00
UDP proxy: Fix bug in freeing delayed messages
This commit is contained in:
parent
65dc885a3b
commit
12b72c182e
1 changed files with 1 additions and 1 deletions
|
@ -562,7 +562,7 @@ static packet prev[MAX_DELAYED_MSG];
|
|||
|
||||
void clear_pending( void )
|
||||
{
|
||||
memset( &prev, 0, sizeof( packet ) );
|
||||
memset( &prev, 0, sizeof( prev ) );
|
||||
prev_len = 0;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue