]> git.pld-linux.org Git - packages/mp4v2.git/blob - mp4v2-int-overflow.patch
- added int-overflow (don't use arbitrary option values overflowing used signed type)
[packages/mp4v2.git] / mp4v2-int-overflow.patch
1 --- mp4v2-Release-MP4v2-3.0.4.0/libutil/Utility.h.orig  2019-04-08 15:28:47.000000000 +0200
2 +++ mp4v2-Release-MP4v2-3.0.4.0/libutil/Utility.h       2020-07-04 21:51:51.847120315 +0200
3 @@ -52,7 +52,7 @@
4  {
5  protected:
6      enum LongCode {
7 -        LC_NONE = 0xf0000000, // safe (cannot conflict with char values)
8 +        LC_NONE = 0xf000000, // safe (cannot conflict with char values)
9          LC_DEBUG,
10          LC_VERBOSE,
11          LC_HELP,
This page took 0.065627 seconds and 3 git commands to generate.