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

Side by Side Diff: third_party/instrumented_libraries/patches/libfontconfig.trusty.diff

Issue 614903003: Instrumented libraries: introduce release-specific patches. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 6 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
1 diff -rupN ./src/fcpat.c ../fontconfig-2.8.0-patched/src/fcpat.c 1 diff -rupN ./src/fcpat.c ../fontconfig-2.11.0-patched/src/fcpat.c
2 --- ./src/fcpat.c» 2009-11-17 01:46:18.000000000 +0300 2 --- ./src/fcpat.c» 2013-10-11 07:10:18.000000000 +0400
3 +++ ../fontconfig-2.8.0-patched/src/fcpat.c» 2014-01-27 20:11:36.185213935 +0 400 3 +++ ../fontconfig-2.11.0-patched/src/fcpat.c» 2014-09-30 22:14:55.818360071 +0 400
4 @@ -37,6 +37,9 @@ FcPatternCreate (void) 4 @@ -33,6 +33,9 @@ FcPatternCreate (void)
5 p = (FcPattern *) malloc (sizeof (FcPattern)); 5 p = (FcPattern *) malloc (sizeof (FcPattern));
6 if (!p) 6 if (!p)
7 return 0; 7 return 0;
8 + // Silence Valgrind/MemorySanitizer. There is uninitialized padding at the 8 + // Silence Valgrind/MemorySanitizer. There is uninitialized padding at the
9 + // end of this structure. When serialized to file, this will cause a report . 9 + // end of this structure. When serialized to file, this will cause a report .
10 + memset(p, 0, sizeof(*p)); 10 + memset(p, 0, sizeof(*p));
11 FcMemAlloc (FC_MEM_PATTERN, sizeof (FcPattern));
12 p->num = 0; 11 p->num = 0;
13 p->size = 0; 12 p->size = 0;
13 p->elts_offset = FcPtrToOffset (p, NULL);
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698