Commit 957457a0 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit 'ccda51b1'

* commit 'ccda51b1':
  lzo: Handle integer overflow

Conflicts:
	libavutil/lzo.c

This is basically not merging changes due to this being fixed differently
in FFmpeg

See: d6af26c5
See: cf2b7c01Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents cf2b7c01 ccda51b1
......@@ -110,7 +110,7 @@ static inline void copy(LZOContext *c, int cnt)
/**
* @brief Copies previously decoded bytes to current position.
* @param back how many bytes back we start, must be > 0
* @param cnt number of bytes to copy, must be >= 0
* @param cnt number of bytes to copy, must be > 0
*
* cnt > back is valid, this will copy the bytes we just copied,
* thus creating a repeating pattern with a period length of back.
......
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