Skip to content
Snippets Groups Projects
Commit e058fa88 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont
Browse files

mod: avoid variable shadowing

parent edc33fed
No related branches found
No related tags found
No related merge requests found
......@@ -576,7 +576,7 @@ static int Validate( demux_t *p_demux, const char *psz_ext )
const uint8_t *p_sample = &p_peek[20 + i*30];
/* Check correct null padding */
const uint8_t *p = memchr( &p_sample[0], '\0', 22 );
p = memchr( &p_sample[0], '\0', 22 );
if( p )
{
for( ; p < &p_sample[22]; p++ )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment