Merge lp:~jameinel/u1db/64bit-suppressions into lp:u1db

Proposed by John A Meinel
Status: Merged
Merged at revision: 278
Proposed branch: lp:~jameinel/u1db/64bit-suppressions
Merge into: lp:u1db
Diff against target: 32 lines (+25/-0)
1 file modified
custom.supp (+25/-0)
To merge this branch: bzr merge lp:~jameinel/u1db/64bit-suppressions
Reviewer Review Type Date Requested Status
Eric Casteleijn (community) Approve
Review via email: mp+105776@code.launchpad.net

Description of the change

This just adds a couple more suppressions. Specifically when running on 64-bit python you get invalid reads of size 8, rather than 32-bit giving invalid reads of size 4. Pretty trivial overall.

To post a comment you must log in.
Revision history for this message
Eric Casteleijn (thisfred) wrote :

yay!

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'custom.supp'
2--- custom.supp 2012-04-20 13:10:53 +0000
3+++ custom.supp 2012-05-15 08:36:17 +0000
4@@ -35,3 +35,28 @@
5 Memcheck:Cond
6 fun:PyObject_Realloc
7 }
8+
9+# Now for the 64-bit versions
10+{
11+ ADDRESS_IN_RANGE/Invalid read of size 8
12+ Memcheck:Addr8
13+ fun:PyObject_Free
14+}
15+
16+{
17+ ADDRESS_IN_RANGE/Invalid read of size 8
18+ Memcheck:Value8
19+ fun:PyObject_Free
20+}
21+
22+{
23+ ADDRESS_IN_RANGE/Invalid read of size 8
24+ Memcheck:Addr8
25+ fun:PyObject_Realloc
26+}
27+
28+{
29+ ADDRESS_IN_RANGE/Invalid read of size 8
30+ Memcheck:Value8
31+ fun:PyObject_Realloc
32+}

Subscribers

People subscribed via source and target branches