Skip to content
Snippets Groups Projects
Commit ca6c3f2c authored by Xi Wang's avatar Xi Wang Committed by Luca Barbato
Browse files

lzo: fix overflow checking in copy_backptr()


The check `src > dst' in the form `&c->out[-back] > c->out' invokes
pointer overflow, which is undefined behavior in C.

Remove the check.  Also replace `&c->out[-back] < c->out_start' with
a safe form `c->out - c->out_start < back' to avoid overflow.

CC: libav-stable@libav.org

Signed-off-by: default avatarXi Wang <xi.wang@gmail.com>
Signed-off-by: default avatarLuca Barbato <lu_zero@gentoo.org>
parent 8425d693
No related branches found
No related tags found
Loading
Loading
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