Commit 69fcb41b authored by Clément Stenac's avatar Clément Stenac

Fix stupid bug

parent 7cc1823e
......@@ -137,7 +137,7 @@ int vlc_HashLookup( hashtable_entry_t *p_array, int i_count,
/* Hash found, let's check it looks like the entry
* We don't check the whole entry, this could lead to bad surprises :( */
if( psz_name[0] == p_array[i].psz_name[0] )
if( psz_name[0] == p_array[i_pos].psz_name[0] )
{
return i_pos;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment