Commit 7fe55485 authored by Michael Niedermayer's avatar Michael Niedermayer

random_seed: fix out of array read

Fixes CID733787
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent adcbb3fd
......@@ -95,7 +95,7 @@ static uint32_t get_generic_seed(void)
av_sha_init(sha, 160);
av_sha_update(sha, (uint8_t*)buffer, sizeof(buffer));
av_sha_final(sha, digest);
return AV_RB32(digest) + AV_RB32(digest+32);
return AV_RB32(digest) + AV_RB32(digest+16);
}
uint32_t av_get_random_seed(void)
......
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