|
From: Jeroen N. W. <jn...@xs...> - 2004-10-11 18:15:39
|
Recently an error message was changed. This change was applied to
memcheck/tests/writev.stderr.exp, but not to
memcheck/tests/writev.stderr.exp2. The patch below will correct this
problem.
Cheers,
Jeroen.
Index: memcheck/tests/writev.stderr.exp2
===================================================================
RCS file: /home/kde/valgrind/memcheck/tests/writev.stderr.exp2,v
retrieving revision 1.1
diff -u -r1.1 writev.stderr.exp2
--- memcheck/tests/writev.stderr.exp2 9 Mar 2004 09:16:35 -0000 1.1
+++ memcheck/tests/writev.stderr.exp2 11 Oct 2004 18:07:35 -0000
@@ -3,19 +3,19 @@
Syscall param writev(vector[...]) contains uninitialised or unaddressable
byte(s)
at 0x........: (within /...libc...)
by 0x........: main (writev.c:56)
- Address 0x........ is not stack'd, malloc'd or free'd
+ Address 0x........ is not stack'd, malloc'd or (recently) free'd
Received EFAULT as expected
Syscall param writev(vector) contains uninitialised or unaddressable byte(s)
at 0x........: (within /...libc...)
by 0x........: main (writev.c:68)
- Address 0x........ is not stack'd, malloc'd or free'd
+ Address 0x........ is not stack'd, malloc'd or (recently) free'd
Received EINVAL as expected
Syscall param readv(vector) contains uninitialised or unaddressable byte(s)
at 0x........: readv (in /...libc...)
by 0x........: main (writev.c:76)
- Address 0x........ is not stack'd, malloc'd or free'd
+ Address 0x........ is not stack'd, malloc'd or (recently) free'd
Received EINVAL as expected
ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 0 from 0)
|
|
From: Nicholas N. <nj...@ca...> - 2004-10-12 08:40:07
|
On Mon, 11 Oct 2004, Jeroen N. Witmond wrote: > Recently an error message was changed. This change was applied to > memcheck/tests/writev.stderr.exp, but not to > memcheck/tests/writev.stderr.exp2. The patch below will correct this > problem. Fixed, thanks. N |