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

Side by Side Diff: tools_webrtc/valgrind/memcheck/suppressions.txt

Issue 2977723003: Add suppression for "uninitialized memory" error in getaddrinfo. (Closed)
Patch Set: Created 3 years, 5 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 # This file is used in addition to the one already maintained in Chrome. 1 # This file is used in addition to the one already maintained in Chrome.
2 # It acts as a place holder for future additions for WebRTC. 2 # It acts as a place holder for future additions for WebRTC.
3 # It must exist for the Python wrapper script to work properly. 3 # It must exist for the Python wrapper script to work properly.
4 4
5 # There are three kinds of suppressions in this file. 5 # There are three kinds of suppressions in this file.
6 # 1. third_party libraries 6 # 1. third_party libraries
7 # 2. webrtc stuff 7 # 2. webrtc stuff
8 # 3. libjingle stuff (talk folder) 8 # 3. libjingle stuff (talk folder)
9 #----------------------------------------------------------------------- 9 #-----------------------------------------------------------------------
10 10
11 # third_party libraries 11 # third_party libraries
12 12
13 { 13 {
14 libc_free_hitting_gce_vms 14 libc_free_hitting_gce_vms
15 Memcheck:Free 15 Memcheck:Free
16 fun:free 16 fun:free
17 fun:__libc_freeres 17 fun:__libc_freeres
18 fun:_vgnU_freeres 18 fun:_vgnU_freeres
19 ... 19 ...
20 } 20 }
21 { 21 {
22 Ubuntu_Precise_Itoa_Optimized_Code 22 Ubuntu_Precise_Itoa_Optimized_Code
23 Memcheck:Uninitialized 23 Memcheck:Uninitialized
24 fun:_itoa_word 24 fun:_itoa_word
25 fun:vfprintf 25 fun:vfprintf
26 fun:vsnprintf 26 fun:vsnprintf
27 fun:snprintf 27 fun:snprintf
28 ... 28 ...
29 } 29 }
30 # See: https://bugs.chromium.org/p/webrtc/issues/detail?id=7973
31 {
32 libc_getaddrinfo_uninitialized
33 Memcheck:Param
34 sendmsg(mmsg[0].msg_hdr)
35 fun:sendmmsg
36 fun:__libc_res_nsend
37 fun:__libc_res_nquery
38 fun:__libc_res_nsearch
39 fun:_nss_dns_gethostbyname4_r
40 fun:gaih_inet
41 fun:getaddrinfo
42 ...
43 }
30 44
31 #----------------------------------------------------------------------- 45 #-----------------------------------------------------------------------
32 # webrtc stuff 46 # webrtc stuff
33 47
34 { 48 {
35 bug_6784 49 bug_6784
36 Memcheck:Leak 50 Memcheck:Leak
37 fun:_Znw* 51 fun:_Znw*
38 fun:_ZN3rtc10HttpServer16HandleConnectionEPNS_15StreamInterfaceE 52 fun:_ZN3rtc10HttpServer16HandleConnectionEPNS_15StreamInterfaceE
39 fun:_ZN3rtc12_GLOBAL__N_122CreateClientConnectionERNS_10HttpServerERNS0_17Htt pServerMonitorEb 53 fun:_ZN3rtc12_GLOBAL__N_122CreateClientConnectionERNS_10HttpServerERNS0_17Htt pServerMonitorEb
(...skipping 428 matching lines...) Expand 10 before | Expand all | Expand 10 after
468 { 482 {
469 bug_687087 483 bug_687087
470 Memcheck:Uninitialized 484 Memcheck:Uninitialized
471 fun:vfprintf 485 fun:vfprintf
472 fun:vsnprintf 486 fun:vsnprintf
473 fun:snprintf 487 fun:snprintf
474 ... 488 ...
475 fun:_ZNK6webrtc11MockRtpRtcp11FlexfecSsrcEv 489 fun:_ZNK6webrtc11MockRtpRtcp11FlexfecSsrcEv
476 ... 490 ...
477 } 491 }
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