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

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

Issue 409793005: Prune some old Valgrind suppressions. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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 | Annotate | Revision Log
« 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 # There are four kinds of suppressions in this file. 1 # There are four kinds of suppressions in this file.
2 # 1. third party stuff we have no control over 2 # 1. third party stuff we have no control over
3 # 3 #
4 # 2. intentional unit test errors, or stuff that is somehow a false positive 4 # 2. intentional unit test errors, or stuff that is somehow a false positive
5 # in our own code, or stuff that is so trivial it's not worth fixing 5 # in our own code, or stuff that is so trivial it's not worth fixing
6 # 6 #
7 # 3. Suppressions for real chromium bugs that are not yet fixed. 7 # 3. Suppressions for real chromium bugs that are not yet fixed.
8 # These should all be in chromium's bug tracking system (but a few aren't yet). 8 # These should all be in chromium's bug tracking system (but a few aren't yet).
9 # Periodically we should sweep this file and the bug tracker clean by 9 # Periodically we should sweep this file and the bug tracker clean by
10 # running overnight and removing outdated bugs/suppressions. 10 # running overnight and removing outdated bugs/suppressions.
(...skipping 752 matching lines...) Expand 10 before | Expand all | Expand 10 after
763 { 763 {
764 bug_30703b 764 bug_30703b
765 Memcheck:Uninitialized 765 Memcheck:Uninitialized
766 fun:deflate 766 fun:deflate
767 ... 767 ...
768 fun:zipCloseFileInZipRaw 768 fun:zipCloseFileInZipRaw
769 fun:zipCloseFileInZip 769 fun:zipCloseFileInZip
770 fun:_Z*13AddEntryToZip* 770 fun:_Z*13AddEntryToZip*
771 } 771 }
772 { 772 {
773 bug_30704a
774 Memcheck:Uninitialized
775 fun:crc32
776 ...
777 fun:png_write_row
778 }
779 {
780 bug_30704b
781 Memcheck:Param
782 write(buf)
783 ...
784 fun:_ZN17SandboxedUnpacker17RewriteImageFilesEv
785 }
786 {
787 bug_30704c
788 Memcheck:Param
789 write(buf)
790 ...
791 fun:_ZNK16BrowserThemePack11WriteToDiskE*
792 }
793 {
794 bug_30704d
795 Memcheck:Uninitialized
796 ...
797 fun:png_process_data
798 fun:_ZN5blink14PNGImageReader6decodeERKNS_12SharedBufferEb
799 fun:_ZN5blink15PNGImageDecoder6decodeEb
800 fun:_ZN5blink15PNGImageDecoder18frameBufferAtIndexEm
801 }
802 {
803 bug_30704e
804 Memcheck:Uninitialized
805 obj:*/libpng*
806 fun:png_write_row
807 }
808 {
809 bug_30704f
810 Memcheck:Uninitialized
811 ...
812 fun:wk_png_write_find_filter
813 fun:wk_png_write_row
814 }
815 {
816 bug_30704g
817 Memcheck:Param
818 write(buf)
819 obj:*libpthread*
820 fun:_ZN9file_util19WriteFileDescriptorE*
821 fun:_ZN9file_util9WriteFileE*
822 fun:*SaveScreenshotInternalE*4base8Callback*
823 fun:*SaveScreenshotE*4base8Callback*
824 }
825 {
826 bug_87232 773 bug_87232
827 Memcheck:Uninitialized 774 Memcheck:Uninitialized
828 fun:_ZN5blink12base64EncodeEPKcjRN3WTF6VectorIcLj0EEEb 775 fun:_ZN5blink12base64EncodeEPKcjRN3WTF6VectorIcLj0EEEb
829 fun:_ZN5blink12base64EncodeERKN3WTF6VectorIcLj0EEERS2_b 776 fun:_ZN5blink12base64EncodeERKN3WTF6VectorIcLj0EEERS2_b
830 fun:_ZN5blink*14ImageToDataURL*SkBitmapEEN3WTF6StringERT_* 777 fun:_ZN5blink*14ImageToDataURL*SkBitmapEEN3WTF6StringERT_*
831 } 778 }
832 { 779 {
833 bug_31985 780 bug_31985
834 Memcheck:Leak 781 Memcheck:Leak
835 fun:_Znw* 782 fun:_Znw*
(...skipping 5422 matching lines...) Expand 10 before | Expand all | Expand 10 after
6258 } 6205 }
6259 { 6206 {
6260 bug_394624 6207 bug_394624
6261 Memcheck:Leak 6208 Memcheck:Leak
6262 ... 6209 ...
6263 fun:_ZN3net24URLRequestJobFactoryImpl18SetProtocolHandlerERKSsPNS_20URLReques tJobFactory15ProtocolHandlerE 6210 fun:_ZN3net24URLRequestJobFactoryImpl18SetProtocolHandlerERKSsPNS_20URLReques tJobFactory15ProtocolHandlerE
6264 ... 6211 ...
6265 fun:_ZN7content28ShellURLRequestContextGetter20GetURLRequestContextEv 6212 fun:_ZN7content28ShellURLRequestContextGetter20GetURLRequestContextEv
6266 fun:_ZN7content21ChromeAppCacheService20InitializeOnIOThreadERKN4base8FilePat hEPNS_15ResourceContextEPN3net23URLRequestContextGetterE13scoped_refptrIN5quota2 0SpecialStoragePolicyEE 6213 fun:_ZN7content21ChromeAppCacheService20InitializeOnIOThreadERKN4base8FilePat hEPNS_15ResourceContextEPN3net23URLRequestContextGetterE13scoped_refptrIN5quota2 0SpecialStoragePolicyEE
6267 } 6214 }
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