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

Side by Side Diff: tools/valgrind.supp

Issue 894863003: Suppress another FontConfig 'leak'. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Pass this file to Valgrind with "--suppressions=tools/valgrind.supp" 1 # Pass this file to Valgrind with "--suppressions=tools/valgrind.supp"
2 2
3 # Third party lib, driver issues. 3 # Third party lib, driver issues.
4 { 4 {
5 ati_driver_bug_1 5 ati_driver_bug_1
6 Memcheck:Param 6 Memcheck:Param
7 ioctl(generic) 7 ioctl(generic)
8 fun:ioctl 8 fun:ioctl
9 ... 9 ...
10 obj:/usr/lib/x86_64-linux-gnu/dri/fglrx_dri.so 10 obj:/usr/lib/x86_64-linux-gnu/dri/fglrx_dri.so
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 #The 'leak' here is a copy of rule values, as opposed to new values. 104 #The 'leak' here is a copy of rule values, as opposed to new values.
105 font_config_bug_3 105 font_config_bug_3
106 Memcheck:Leak 106 Memcheck:Leak
107 fun:*alloc 107 fun:*alloc
108 ... 108 ...
109 fun:FcConfigValues 109 fun:FcConfigValues
110 fun:FcConfigSubstituteWithPat 110 fun:FcConfigSubstituteWithPat
111 fun:FcFontRenderPrepare 111 fun:FcFontRenderPrepare
112 } 112 }
113 { 113 {
114 #Same root cause as font_config_bug_2.
115 #The 'leak' is copies of font or pattern values into returned pattern values .
116 font_config_bug_4
117 Memcheck:Leak
118 fun:*alloc
119 ...
120 fun:FcValue*
121 fun:FcFontRenderPrepare
122 }
123 {
114 zlib_bug_1 124 zlib_bug_1
115 Memcheck:Cond 125 Memcheck:Cond
116 fun:inflateReset2 126 fun:inflateReset2
117 fun:inflateInit2_ 127 fun:inflateInit2_
118 fun:png_create_read_struct_2 128 fun:png_create_read_struct_2
119 fun:png_create_read_struct 129 fun:png_create_read_struct
120 } 130 }
121 { 131 {
122 zlib_bug_2 132 zlib_bug_2
123 Memcheck:Cond 133 Memcheck:Cond
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
207 { 217 {
208 gpu_issue_14 218 gpu_issue_14
209 Memcheck:Addr4 219 Memcheck:Addr4
210 fun:_ZN22GrAAConvexPathRenderer10onDrawPathERK6SkPathRK11SkStrokeRecP12GrDra wTargetb 220 fun:_ZN22GrAAConvexPathRenderer10onDrawPathERK6SkPathRK11SkStrokeRecP12GrDra wTargetb
211 } 221 }
212 { 222 {
213 gpu_issue_15 223 gpu_issue_15
214 Memcheck:Addr2 224 Memcheck:Addr2
215 fun:_ZN22GrAAConvexPathRenderer10onDrawPathERK6SkPathRK11SkStrokeRecP12GrDra wTargetb 225 fun:_ZN22GrAAConvexPathRenderer10onDrawPathERK6SkPathRK11SkStrokeRecP12GrDra wTargetb
216 } 226 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698