Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1148)

Side by Side Diff: chromium/patches/to_upstream/40_MKV_fix_oob_write.patch

Issue 9290059: Initial commit of all previous Chrome build scripts. (Closed) Base URL: http://git.chromium.org/chromium/third_party/ffmpeg.git@master
Patch Set: Drop deprecated subfolder. Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 Index: orig/libavformat/matroskadec.c
2 ===================================================================
3 --- orig/libavformat/matroskadec.c (revision 105133)
4 +++ ffmpeg/libavformat/matroskadec.c (working copy)
5 @@ -1841,7 +1841,7 @@
6 lace_size[n] = lace_size[n - 1] + snum;
7 total += lace_size[n];
8 }
9 - lace_size[n] = size - total;
10 + lace_size[laces - 1] = size - total;
11 break;
12 }
13 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698