Commit 586ba24f authored by Paul B Mahol's avatar Paul B Mahol

avcodec/exr: fix memset first arg in reverse_lut()

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent 9b8152bf
......@@ -322,7 +322,7 @@ static uint16_t reverse_lut(const uint8_t *bitmap, uint16_t *lut)
i = k - 1;
memset(lut + k, 0, (USHORT_RANGE - k) * 2);
memset(lut + k * 2, 0, (USHORT_RANGE - k) * 2);
return i;
}
......
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