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

Side by Side Diff: third_party/lcms2-2.6/0003-uninit.patch

Issue 2362813002: Fix use uninitialized value and stack buffer overflow read (Closed)
Patch Set: Created 4 years, 2 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 diff --git a/third_party/lcms2-2.6/src/cmstypes.c b/third_party/lcms2-2.6/src/cm stypes.c
2 index 9fe5e2a..feba387 100644
3 --- a/third_party/lcms2-2.6/src/cmstypes.c
4 +++ b/third_party/lcms2-2.6/src/cmstypes.c
5 @@ -2985,7 +2985,7 @@ void *Type_ColorantTable_Read(struct _cms_typehandler_stru ct* self, cmsIOHANDLER
6 for (i=0; i < Count; i++) {
7
8 if (io ->Read(io, Name, 32, 1) != 1) goto Error;
9 - Name[33] = 0;
10 + Name[32] = 0;
11
12 if (!_cmsReadUInt16Array(io, 3, PCS)) goto Error;
13
14 @@ -3112,6 +3112,7 @@ void *Type_NamedColor_Read(struct _cms_typehandler_struct* self, cmsIOHANDLER* i
15
16 memset(Colorant, 0, sizeof(Colorant));
17 if (io -> Read(io, Root, 32, 1) != 1) return NULL;
18 + Root[32] = 0;
19 if (!_cmsReadUInt16Array(io, 3, PCS)) goto Error;
20 if (!_cmsReadUInt16Array(io, nDeviceCoords, Colorant)) goto Error;
21
OLDNEW
« no previous file with comments | « no previous file | third_party/lcms2-2.6/README.pdfium » ('j') | third_party/lcms2-2.6/src/cmstypes.c » ('J')

Powered by Google App Engine
This is Rietveld 408576698