]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Filter out everything after "(below main)" in a line. This will help with
authorNicholas Nethercote <njn@valgrind.org>
Thu, 12 Feb 2009 00:51:50 +0000 (00:51 +0000)
committerNicholas Nethercote <njn@valgrind.org>
Thu, 12 Feb 2009 00:51:50 +0000 (00:51 +0000)
Darwin, for which such entries can occur within the executable, rather than
within libc.

git-svn-id: svn://svn.valgrind.org/valgrind/trunk@9142

35 files changed:
drd/tests/tc09_bad_unlock.stderr.exp-glibc2.8
drd/tests/tc20_verifywrap.stderr.exp-glibc2.8
drd/tests/tc20_verifywrap2.stderr.exp-glibc2.8
helgrind/tests/tc04_free_lock.stderr.exp-glibc25-amd64
helgrind/tests/tc09_bad_unlock.stderr.exp-glibc25-amd64
helgrind/tests/tc09_bad_unlock.stderr.exp-glibc27-amd64
helgrind/tests/tc20_verifywrap.stderr.exp-glibc25-amd64
helgrind/tests/tc20_verifywrap.stderr.exp-glibc27-amd64
helgrind/tests/tc20_verifywrap.stderr.exp-glibc28-amd64
helgrind/tests/tc22_exit_w_lock.stderr.exp-glibc25-x86
massif/tests/deep-D.post.exp
memcheck/tests/badjump.stderr.exp
memcheck/tests/badjump2.stderr.exp
memcheck/tests/buflen_check.stderr.exp2
memcheck/tests/execve.stderr.exp2
memcheck/tests/execve2.stderr.exp2
memcheck/tests/fwrite.stderr.exp
memcheck/tests/origin4-many.stderr.exp-glibc25-amd64
memcheck/tests/origin4-many.stderr.exp-glibc25-x86
memcheck/tests/supp_unknown.stderr.exp
memcheck/tests/x86-linux/scalar.stderr.exp
memcheck/tests/x86-linux/scalar_exit_group.stderr.exp
memcheck/tests/x86-linux/scalar_supp.stderr.exp
none/tests/fdleak_creat.stderr.exp
none/tests/fdleak_dup.stderr.exp
none/tests/fdleak_dup.stderr.exp2
none/tests/fdleak_dup2.stderr.exp
none/tests/fdleak_dup2.stderr.exp2
none/tests/fdleak_fcntl.stderr.exp
none/tests/fdleak_fcntl.stderr.exp2
none/tests/fdleak_fcntl.stderr.exp3
none/tests/fdleak_open.stderr.exp
none/tests/fdleak_pipe.stderr.exp
none/tests/fdleak_socketpair.stderr.exp
tests/filter_libc

index 179ee0833afda115f41984eba85972de091b2f60..6991e84d5a87f673b6ddc2a6970b282f09e51af7 100644 (file)
@@ -28,7 +28,7 @@ The object at address 0x........ is not a mutex.
 
 Destroying locked mutex: mutex 0x........, recursion count 1, owner 1.
    at 0x........: nearly_main (tc09_bad_unlock.c:45)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 ---------------------
 
 Mutex not locked by calling thread: mutex 0x........, recursion count 0, owner 1.
@@ -60,6 +60,6 @@ The object at address 0x........ is not a mutex.
 
 Destroying locked mutex: mutex 0x........, recursion count 1, owner 1.
    at 0x........: nearly_main (tc09_bad_unlock.c:45)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 ERROR SUMMARY: 8 errors from 8 contexts (suppressed: 0 from 0)
index d4e7175e5e3a7e43fd853eebcbbfb7d133c7f74c..f4290f4910f5676a776a05c3157bc42fc79380bc 100644 (file)
@@ -128,6 +128,6 @@ Destroying locked mutex: mutex 0x........, recursion count 1, owner 1.
    at 0x........: pthread_mutex_lock (drd_pthread_intercepts.c:?)
    by 0x........: (within ld-?.?.so)
    by 0x........: exit (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 ERROR SUMMARY: 14 errors from 14 contexts (suppressed: 0 from 0)
index 26410b6d4f036a2ef1d772bd78595b06ca37146d..50077791484319d01622fff1396d651251e8fe04 100644 (file)
@@ -163,7 +163,7 @@ Destroying locked mutex: mutex 0x........, recursion count 1, owner 1.
    at 0x........: pthread_mutex_lock (drd_pthread_intercepts.c:?)
    by 0x........: (within ld-?.?.so)
    by 0x........: exit (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 [1/1] mutex_destroy   invalid mutex 0x........
 [1/1] mutex_unlock    recursive mutex 0x........ rc 1
 [1/1] pre_mutex_lock  recursive mutex 0x........ rc 0 owner 1
index 91f128fa53b83b0d97c057f834f8ccf8355f2815..b417aef1003ccad2adf55b37b65ad663b9899c65 100644 (file)
@@ -4,6 +4,6 @@ Thread #x is the program's root thread
 Thread #x: Exiting thread still holds 2 locks
    at 0x........: _Exit (in /...libc...)
    by 0x........: exit (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 0 from 0)
index 2b3c4b3df918b303c92a1894370490031c974119..b61e788aaef6c8e39bc0f8bc2a4c015297745dd5 100644 (file)
@@ -93,6 +93,6 @@ Thread #x's call to pthread_mutex_unlock failed
 Thread #x: Exiting thread still holds 1 lock
    at 0x........: _Exit (in /...libc...)
    by 0x........: exit (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 ERROR SUMMARY: 11 errors from 11 contexts (suppressed: 0 from 0)
index 6bb227412c2e74f36e581d55d560c24ba62186c5..cb76dad4352692c9ca7b1697e51eae88af1eb19f 100644 (file)
@@ -91,6 +91,6 @@ Thread #x's call to pthread_mutex_unlock failed
 Thread #x: Exiting thread still holds 1 lock
    at 0x........: _Exit (in /...libc...)
    by 0x........: exit (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 ERROR SUMMARY: 11 errors from 11 contexts (suppressed: 0 from 0)
index e0fd6ea01ee28a1978fff10a612dd31099308593..5221eb3f0c18855197bc85e3a453bac84e161069 100644 (file)
@@ -154,6 +154,6 @@ FIXME: can't figure out how to verify wrap of sem_post
 Thread #x: Exiting thread still holds 1 lock
    at 0x........: _Exit (in /...libc...)
    by 0x........: exit (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 ERROR SUMMARY: 20 errors from 20 contexts (suppressed: 0 from 0)
index f8cf67dabe0a3518482da32c3065249724f538d3..e7a17eed6cdc091755ffbe0c135e25ad80673f69 100644 (file)
@@ -159,6 +159,6 @@ FIXME: can't figure out how to verify wrap of sem_post
 Thread #x: Exiting thread still holds 1 lock
    at 0x........: _Exit (in /...libc...)
    by 0x........: exit (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 ERROR SUMMARY: 21 errors from 21 contexts (suppressed: 0 from 0)
index 23828254d32249183b9df93a76ded3855337efbe..37448a7be048fc63e5ffabd60029f20be6047cc8 100644 (file)
@@ -160,6 +160,6 @@ FIXME: can't figure out how to verify wrap of sem_post
 Thread #x: Exiting thread still holds 1 lock
    at 0x........: _Exit (in /...libc...)
    by 0x........: exit (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 ERROR SUMMARY: 21 errors from 21 contexts (suppressed: 0 from 0)
index 12a7180ebe4464e03e3244a2329848f60ea33134..daba450dd0103566fafa5e892a7152b12b18abf2 100644 (file)
@@ -23,6 +23,6 @@ Thread #x is the program's root thread
 
 Thread #x: Exiting thread still holds 1 lock
    at 0x........: kill (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 0 from 0)
index 104c58219933c5bcf9fc5eb2f2da72cf6b8b7524..7a5ae82a7744f4e848ff985707323c40e554554b 100644 (file)
@@ -46,7 +46,7 @@ Number of snapshots: 11
   8          1,664            1,664            1,600            64            0
   9          1,872            1,872            1,800            72            0
 96.15% (1,800B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc.
-->96.15% (1,800B) 0x........: (below main) (in /...libc...)
+->96.15% (1,800B) 0x........: (below main)
   
 --------------------------------------------------------------------------------
   n        time(B)         total(B)   useful-heap(B) extra-heap(B)    stacks(B)
index 8ffd9d06d63fbf8639d826c2e327271e71cb5389..9187d7221719b670a0816c4ff97b51556db3825f 100644 (file)
@@ -1,13 +1,13 @@
 
 Jump to the invalid address stated on the next line
    at 0x........: ???
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 
 Process terminating with default action of signal 11 (SIGSEGV)
  Access not within mapped region at address 0x........
    at 0x........: ???
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  If you believe this happened as a result of a stack overflow in your
  program's main thread (unlikely but possible), you can try to increase
  the size of the main thread stack using the --main-stacksize= flag.
index ba259959885b35b4298583aa3e6656b06b0da315..a9feb10e2f85ca3386aa6e335988f862357b0494 100644 (file)
@@ -1,5 +1,5 @@
 Jump to the invalid address stated on the next line
    at 0x........: ???
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 Signal caught, as expected
index a8f33873cef065f7b874ba6853c6abc4e00d1185..e5e4451308c3103143f7cf26555d96c1ccae6d13 100644 (file)
@@ -1,11 +1,11 @@
 Syscall param socketcall.getsockname(name) points to unaddressable byte(s)
    at 0x........: getsockname (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 
 Syscall param socketcall.getsockname(namelen_in) points to unaddressable byte(s)
    at 0x........: getsockname (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 getsockname(1) failed
 getsockname(2) failed
index 0fa0337ed03d2f356b6b9b520af524ee0cd85930..6abafbfc31b6b06081dd281c2d01e8c91129f977 100644 (file)
@@ -1,14 +1,14 @@
 Syscall param execve(filename) points to unaddressable byte(s)
    at 0x........: execve (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 
 Syscall param execve(argv[i]) points to unaddressable byte(s)
    at 0x........: execve (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 
 Syscall param execve(envp[i]) points to unaddressable byte(s)
    at 0x........: execve (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
index 8168de12957b86476334e9b579b262c36599757b..19d9559b8e21bbc1eda9be13fe605e19ecb3cef9 100644 (file)
@@ -1,4 +1,4 @@
 Syscall param execve(filename) points to unaddressable byte(s)
    at 0x........: execve (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
index 3dc924feb19b8add1d9ade3d8c76126a66c1bb81..4f38e481085679b7d07f39755a7c191edc4a75ca 100644 (file)
@@ -1,6 +1,6 @@
 Syscall param write(buf) points to uninitialised byte(s)
    at 0x........: write (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is 0 bytes inside a block of size 10 alloc'd
    at 0x........: malloc (vg_replace_malloc.c:...)
    by 0x........: main (fwrite.c:7)
index b1855cba257e1fbcded512f4d8f05f9608bc6037..67517fe97e9c0480bdae2f42c31a4f832d74feed 100644 (file)
@@ -49,7 +49,7 @@ Conditional jump or move depends on uninitialised value(s)
 Syscall param exit_group(exit_code) contains uninitialised byte(s)
    at 0x........: _Exit (in /...libc...)
    by 0x........: ...
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Uninitialised value was created by a heap allocation
    at 0x........: malloc (vg_replace_malloc.c:...)
    by 0x........: main (origin4-many.c:39)
index e7b823c73d1f7a33120bd94d71cf701f9bee9cf4..0364cf5e7c0d67bafdcc76d3752df52c6c70e2c9 100644 (file)
@@ -48,7 +48,7 @@ Conditional jump or move depends on uninitialised value(s)
 
 Syscall param exit_group(exit_code) contains uninitialised byte(s)
    at 0x........: _Exit (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Uninitialised value was created by a heap allocation
    at 0x........: malloc (vg_replace_malloc.c:...)
    by 0x........: main (origin4-many.c:39)
index 724fb79506f82257cce388d02a774f388618f270..1d4bfa5cfcc1707b01a998bfdbde4a95b9d22153 100644 (file)
@@ -2,7 +2,7 @@
 Process terminating with default action of signal 11 (SIGSEGV)
  Access not within mapped region at address 0x........
    at 0x........: ???
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  If you believe this happened as a result of a stack overflow in your
  program's main thread (unlikely but possible), you can try to increase
  the size of the main thread stack using the --main-stacksize= flag.
index 4bc952ade2655315970066f2a22b9d4f21b3ebe8..a4c8d6edaa1311d320e80a81ab4f7c87ae3f7fe4 100644 (file)
 -----------------------------------------------------
 Syscall param (syscallno) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param read(fd) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param read(buf) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param read(count) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param read(buf) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
   4:          __NR_write 3s 1m
@@ -36,19 +36,19 @@ Syscall param read(buf) points to unaddressable byte(s)
 
 Syscall param write(fd) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param write(buf) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param write(count) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param write(buf) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
   5:           __NR_open (2-args) 2s 1m
@@ -56,15 +56,15 @@ Syscall param write(buf) points to unaddressable byte(s)
 
 Syscall param open(filename) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param open(flags) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param open(filename) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
   5:           __NR_open (3-args) 1s 0m
@@ -72,33 +72,33 @@ Syscall param open(filename) points to unaddressable byte(s)
 
 Syscall param open(mode) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 -----------------------------------------------------
   6:          __NR_close 1s 0m
 -----------------------------------------------------
 
 Syscall param close(fd) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 -----------------------------------------------------
   7:        __NR_waitpid 3s 1m
 -----------------------------------------------------
 
 Syscall param waitpid(pid) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param waitpid(status) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param waitpid(options) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param waitpid(status) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
   8:          __NR_creat 2s 1m
@@ -106,15 +106,15 @@ Syscall param waitpid(status) points to unaddressable byte(s)
 
 Syscall param creat(pathname) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param creat(mode) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param creat(pathname) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
   9:           __NR_link 2s 2m
@@ -122,20 +122,20 @@ Syscall param creat(pathname) points to unaddressable byte(s)
 
 Syscall param link(oldpath) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param link(newpath) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param link(oldpath) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 
 Syscall param link(newpath) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
  10:         __NR_unlink 1s 1m
@@ -143,11 +143,11 @@ Syscall param link(newpath) points to unaddressable byte(s)
 
 Syscall param unlink(pathname) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param unlink(pathname) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
  11:         __NR_execve 3s 1m
@@ -155,19 +155,19 @@ Syscall param unlink(pathname) points to unaddressable byte(s)
 
 Syscall param execve(filename) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param execve(argv) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param execve(envp) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param execve(filename) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
  12:          __NR_chdir 1s 1m
@@ -175,11 +175,11 @@ Syscall param execve(filename) points to unaddressable byte(s)
 
 Syscall param chdir(path) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param chdir(path) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
  13:           __NR_time 1s 1m
@@ -187,11 +187,11 @@ Syscall param chdir(path) points to unaddressable byte(s)
 
 Syscall param time(t) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param time(t) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
  14:          __NR_mknod 3s 1m
@@ -199,19 +199,19 @@ Syscall param time(t) points to unaddressable byte(s)
 
 Syscall param mknod(pathname) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param mknod(mode) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param mknod(dev) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param mknod(pathname) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
  15:          __NR_chmod 2s 1m
@@ -219,15 +219,15 @@ Syscall param mknod(pathname) points to unaddressable byte(s)
 
 Syscall param chmod(path) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param chmod(mode) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param chmod(path) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
  16:         __NR_lchown n/a
@@ -244,15 +244,15 @@ Syscall param chmod(path) points to unaddressable byte(s)
 
 Syscall param lseek(fd) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param lseek(offset) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param lseek(whence) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 -----------------------------------------------------
  20:         __NR_getpid 0s 0m
 -----------------------------------------------------
@@ -262,37 +262,37 @@ Syscall param lseek(whence) contains uninitialised byte(s)
 
 Syscall param mount(source) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param mount(target) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param mount(type) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param mount(flags) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param mount(data) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param mount(source) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 
 Syscall param mount(target) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 
 Syscall param mount(type) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
  22:         __NR_umount 1s 1m
@@ -300,11 +300,11 @@ Syscall param mount(type) points to unaddressable byte(s)
 
 Syscall param umount(path) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param umount(path) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
  23:         __NR_setuid 1s 0m
@@ -312,7 +312,7 @@ Syscall param umount(path) points to unaddressable byte(s)
 
 Syscall param setuid16(uid) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 -----------------------------------------------------
  24:         __NR_getuid 0s 0m
 -----------------------------------------------------
@@ -325,23 +325,23 @@ Syscall param setuid16(uid) contains uninitialised byte(s)
 
 Syscall param ptrace(request) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param ptrace(pid) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param ptrace(addr) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param ptrace(data) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param ptrace(getregs) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
  27:          __NR_alarm 1s 0m
@@ -349,7 +349,7 @@ Syscall param ptrace(getregs) points to unaddressable byte(s)
 
 Syscall param alarm(seconds) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 -----------------------------------------------------
  28:       __NR_oldfstat n/a
 -----------------------------------------------------
@@ -362,20 +362,20 @@ Syscall param alarm(seconds) contains uninitialised byte(s)
 
 Syscall param utime(filename) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param utime(buf) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param utime(filename) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 
 Syscall param utime(buf) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
  31:           __NR_stty ni
@@ -389,15 +389,15 @@ Syscall param utime(buf) points to unaddressable byte(s)
 
 Syscall param access(pathname) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param access(mode) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param access(pathname) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
  34:           __NR_nice 1s 0m
@@ -405,7 +405,7 @@ Syscall param access(pathname) points to unaddressable byte(s)
 
 Syscall param nice(inc) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 -----------------------------------------------------
  35:          __NR_ftime ni
 -----------------------------------------------------
@@ -418,31 +418,31 @@ Syscall param nice(inc) contains uninitialised byte(s)
 
 Syscall param kill(pid) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param kill(sig) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 -----------------------------------------------------
  38:         __NR_rename 2s 2m
 -----------------------------------------------------
 
 Syscall param rename(oldpath) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param rename(newpath) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param rename(oldpath) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 
 Syscall param rename(newpath) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
  39:          __NR_mkdir 2s 1m
@@ -450,15 +450,15 @@ Syscall param rename(newpath) points to unaddressable byte(s)
 
 Syscall param mkdir(pathname) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param mkdir(mode) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param mkdir(pathname) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
  40:          __NR_rmdir 1s 1m
@@ -466,11 +466,11 @@ Syscall param mkdir(pathname) points to unaddressable byte(s)
 
 Syscall param rmdir(pathname) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param rmdir(pathname) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
  41:            __NR_dup 1s 0m
@@ -478,18 +478,18 @@ Syscall param rmdir(pathname) points to unaddressable byte(s)
 
 Syscall param dup(oldfd) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 -----------------------------------------------------
  42:           __NR_pipe 1s 1m
 -----------------------------------------------------
 
 Syscall param pipe(filedes) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param pipe(filedes) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
  43:          __NR_times 1s 1m
@@ -497,11 +497,11 @@ Syscall param pipe(filedes) points to unaddressable byte(s)
 
 Syscall param times(buf) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param times(buf) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
  44:           __NR_prof ni
@@ -512,14 +512,14 @@ Syscall param times(buf) points to unaddressable byte(s)
 
 Syscall param brk(end_data_segment) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 -----------------------------------------------------
  46:         __NR_setgid 1s 0m
 -----------------------------------------------------
 
 Syscall param setgid16(gid) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 -----------------------------------------------------
  47:         __NR_getgid 0s 0m
 -----------------------------------------------------
@@ -538,11 +538,11 @@ Syscall param setgid16(gid) contains uninitialised byte(s)
 
 Syscall param acct(filename) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param acct(filename) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
  52:        __NR_umount2 2s 1m
@@ -550,15 +550,15 @@ Syscall param acct(filename) points to unaddressable byte(s)
 
 Syscall param umount2(path) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param umount2(flags) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param umount2(path) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
  53:           __NR_lock ni
@@ -569,19 +569,19 @@ Syscall param umount2(path) points to unaddressable byte(s)
 
 Syscall param ioctl(fd) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param ioctl(request) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param ioctl(arg) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param ioctl(TCSET{S,SW,SF}) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
  55:          __NR_fcntl (GETFD) 2s 0m
@@ -589,18 +589,18 @@ Syscall param ioctl(TCSET{S,SW,SF}) points to unaddressable byte(s)
 
 Syscall param fcntl(fd) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param fcntl(cmd) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 -----------------------------------------------------
  55:          __NR_fcntl (DUPFD) 1s 0m
 -----------------------------------------------------
 
 Syscall param fcntl(arg) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 -----------------------------------------------------
  55:          __NR_fcntl (GETLK) 1s 0m
 -----------------------------------------------------
@@ -610,7 +610,7 @@ will still be recorded, but in less detail than before.
 
 Syscall param fcntl(lock) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 -----------------------------------------------------
  56:            __NR_mpx ni
 -----------------------------------------------------
@@ -620,11 +620,11 @@ Syscall param fcntl(lock) contains uninitialised byte(s)
 
 Syscall param setpgid(pid) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param setpgid(pgid) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 -----------------------------------------------------
  58:         __NR_ulimit ni
 -----------------------------------------------------
@@ -637,18 +637,18 @@ Syscall param setpgid(pgid) contains uninitialised byte(s)
 
 Syscall param umask(mask) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 -----------------------------------------------------
  61:         __NR_chroot 1s 1m
 -----------------------------------------------------
 
 Syscall param chroot(path) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param chroot(path) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
  62:          __NR_ustat n/a
@@ -659,11 +659,11 @@ Syscall param chroot(path) points to unaddressable byte(s)
 
 Syscall param dup2(oldfd) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param dup2(newfd) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 -----------------------------------------------------
  64:        __NR_getppid 0s 0m
 -----------------------------------------------------
@@ -679,40 +679,40 @@ Syscall param dup2(newfd) contains uninitialised byte(s)
 
 Syscall param sigaction(signum) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param sigaction(act) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param sigaction(oldact) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param sigaction(act->sa_handler) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is 0 bytes after a block of size 4 alloc'd
    at 0x........: malloc (vg_replace_malloc.c:...)
    by 0x........: main (scalar.c:24)
 
 Syscall param sigaction(act->sa_mask) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is 4 bytes after a block of size 4 alloc'd
    at 0x........: malloc (vg_replace_malloc.c:...)
    by 0x........: main (scalar.c:24)
 
 Syscall param sigaction(act->sa_flags) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is 8 bytes after a block of size 4 alloc'd
    at 0x........: malloc (vg_replace_malloc.c:...)
    by 0x........: main (scalar.c:24)
 
 Syscall param sigaction(oldact) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is 0 bytes after a block of size 4 alloc'd
    at 0x........: malloc (vg_replace_malloc.c:...)
    by 0x........: main (scalar.c:24)
@@ -728,22 +728,22 @@ Syscall param sigaction(oldact) points to unaddressable byte(s)
 
 Syscall param setreuid16(ruid) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param setreuid16(euid) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 -----------------------------------------------------
  71:       __NR_setregid 2s 0m
 -----------------------------------------------------
 
 Syscall param setregid16(rgid) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param setregid16(egid) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 -----------------------------------------------------
  72:     __NR_sigsuspend ignore
 -----------------------------------------------------
@@ -753,11 +753,11 @@ Syscall param setregid16(egid) contains uninitialised byte(s)
 
 Syscall param sigpending(set) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param sigpending(set) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
  74:    __NR_sethostname n/a
@@ -768,15 +768,15 @@ Syscall param sigpending(set) points to unaddressable byte(s)
 
 Syscall param setrlimit(resource) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param setrlimit(rlim) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param setrlimit(rlim) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
  76:      __NR_getrlimit 2s 1m
@@ -784,15 +784,15 @@ Syscall param setrlimit(rlim) points to unaddressable byte(s)
 
 Syscall param old_getrlimit(resource) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param old_getrlimit(rlim) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param old_getrlimit(rlim) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
  77:      __NR_getrusage 2s 1m
@@ -800,15 +800,15 @@ Syscall param old_getrlimit(rlim) points to unaddressable byte(s)
 
 Syscall param getrusage(who) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param getrusage(usage) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param getrusage(usage) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
  78:   __NR_gettimeofday 2s 2m
@@ -816,20 +816,20 @@ Syscall param getrusage(usage) points to unaddressable byte(s)
 
 Syscall param gettimeofday(tv) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param gettimeofday(tz) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param gettimeofday(tv) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 
 Syscall param gettimeofday(tz) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
  79:   __NR_settimeofday 2s 2m
@@ -837,20 +837,20 @@ Syscall param gettimeofday(tz) points to unaddressable byte(s)
 
 Syscall param settimeofday(tv) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param settimeofday(tz) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param settimeofday(tv) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 
 Syscall param settimeofday(tz) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
  80:      __NR_getgroups 2s 1m
@@ -858,15 +858,15 @@ Syscall param settimeofday(tz) points to unaddressable byte(s)
 
 Syscall param getgroups16(size) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param getgroups16(list) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param getgroups16(list) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
  81:      __NR_setgroups 2s 1m
@@ -874,15 +874,15 @@ Syscall param getgroups16(list) points to unaddressable byte(s)
 
 Syscall param setgroups16(size) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param setgroups16(list) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param setgroups16(list) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
  82:         __NR_select 1s 4m
@@ -890,26 +890,26 @@ Syscall param setgroups16(list) points to unaddressable byte(s)
 
 Syscall param old_select(args) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param old_select(readfds) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 
 Syscall param old_select(writefds) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 
 Syscall param old_select(exceptfds) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 
 Syscall param old_select(timeout) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
  83:        __NR_symlink 2s 2m
@@ -917,20 +917,20 @@ Syscall param old_select(timeout) points to unaddressable byte(s)
 
 Syscall param symlink(oldpath) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param symlink(newpath) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param symlink(oldpath) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 
 Syscall param symlink(newpath) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
  84:       __NR_oldlstat n/a
@@ -941,24 +941,24 @@ Syscall param symlink(newpath) points to unaddressable byte(s)
 
 Syscall param readlink(path) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param readlink(buf) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param readlink(bufsiz) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param readlink(path) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 
 Syscall param readlink(buf) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
  86:         __NR_uselib n/a
@@ -978,33 +978,33 @@ Syscall param readlink(buf) points to unaddressable byte(s)
 
 Syscall param old_mmap(args) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 -----------------------------------------------------
  91:         __NR_munmap 2s 0m
 -----------------------------------------------------
 
 Syscall param munmap(start) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param munmap(length) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 -----------------------------------------------------
  92:       __NR_truncate 2s 1m
 -----------------------------------------------------
 
 Syscall param truncate(path) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param truncate(length) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param truncate(path) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
  93:      __NR_ftruncate 2s 0m
@@ -1012,63 +1012,63 @@ Syscall param truncate(path) points to unaddressable byte(s)
 
 Syscall param ftruncate(fd) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param ftruncate(length) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 -----------------------------------------------------
  94:         __NR_fchmod 2s 0m
 -----------------------------------------------------
 
 Syscall param fchmod(fildes) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param fchmod(mode) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 -----------------------------------------------------
  95:         __NR_fchown 3s 0m
 -----------------------------------------------------
 
 Syscall param fchown16(fd) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param fchown16(owner) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param fchown16(group) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 -----------------------------------------------------
  96:    __NR_getpriority 2s 0m
 -----------------------------------------------------
 
 Syscall param getpriority(which) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param getpriority(who) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 -----------------------------------------------------
  97:    __NR_setpriority 3s 0m
 -----------------------------------------------------
 
 Syscall param setpriority(which) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param setpriority(who) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param setpriority(prio) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 -----------------------------------------------------
  98:         __NR_profil ni
 -----------------------------------------------------
@@ -1078,20 +1078,20 @@ Syscall param setpriority(prio) contains uninitialised byte(s)
 
 Syscall param statfs(path) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param statfs(buf) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param statfs(path) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 
 Syscall param statfs(buf) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 100:        __NR_fstatfs 2s 1m
@@ -1099,15 +1099,15 @@ Syscall param statfs(buf) points to unaddressable byte(s)
 
 Syscall param fstatfs(fd) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param fstatfs(buf) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param fstatfs(buf) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 101:         __NR_ioperm 3s 0m
@@ -1115,15 +1115,15 @@ Syscall param fstatfs(buf) points to unaddressable byte(s)
 
 Syscall param ioperm(from) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param ioperm(num) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param ioperm(turn_on) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 -----------------------------------------------------
 102:     __NR_socketcall XXX
 -----------------------------------------------------
@@ -1133,19 +1133,19 @@ Syscall param ioperm(turn_on) contains uninitialised byte(s)
 
 Syscall param syslog(type) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param syslog(bufp) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param syslog(len) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param syslog(bufp) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 104:      __NR_setitimer 3s 2m
@@ -1153,24 +1153,24 @@ Syscall param syslog(bufp) points to unaddressable byte(s)
 
 Syscall param setitimer(which) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param setitimer(value) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param setitimer(ovalue) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param setitimer(value) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 
 Syscall param setitimer(ovalue) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 105:      __NR_getitimer 2s 1m
@@ -1178,15 +1178,15 @@ Syscall param setitimer(ovalue) points to unaddressable byte(s)
 
 Syscall param getitimer(which) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param getitimer(value) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param getitimer(value) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 106:           __NR_stat 2s 2m
@@ -1194,20 +1194,20 @@ Syscall param getitimer(value) points to unaddressable byte(s)
 
 Syscall param stat(file_name) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param stat(buf) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param stat(file_name) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 
 Syscall param stat(buf) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 107:          __NR_lstat 2s 2m
@@ -1215,20 +1215,20 @@ Syscall param stat(buf) points to unaddressable byte(s)
 
 Syscall param lstat(file_name) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param lstat(buf) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param lstat(file_name) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 
 Syscall param lstat(buf) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 108:          __NR_fstat 2s 1m
@@ -1236,15 +1236,15 @@ Syscall param lstat(buf) points to unaddressable byte(s)
 
 Syscall param fstat(fd) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param fstat(buf) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param fstat(buf) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 109:       __NR_olduname n/a
@@ -1255,7 +1255,7 @@ Syscall param fstat(buf) points to unaddressable byte(s)
 
 Syscall param iopl(level) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 -----------------------------------------------------
 111:        __NR_vhangup 0s 0m
 -----------------------------------------------------
@@ -1271,28 +1271,28 @@ Syscall param iopl(level) contains uninitialised byte(s)
 
 Syscall param wait4(pid) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param wait4(status) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param wait4(options) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param wait4(rusage) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param wait4(status) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 
 Syscall param wait4(rusage) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 115:        __NR_swapoff n/a
@@ -1303,11 +1303,11 @@ Syscall param wait4(rusage) points to unaddressable byte(s)
 
 Syscall param sysinfo(info) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param sysinfo(info) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 117:            __NR_ipc 5s 0m
@@ -1315,30 +1315,30 @@ Syscall param sysinfo(info) points to unaddressable byte(s)
 
 Syscall param ipc(call) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param ipc(first) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param ipc(second) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param ipc(third) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param ipc(ptr) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 -----------------------------------------------------
 118:          __NR_fsync 1s 0m
 -----------------------------------------------------
 
 Syscall param fsync(fd) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 -----------------------------------------------------
 119:      __NR_sigreturn n/a
 -----------------------------------------------------
@@ -1348,27 +1348,27 @@ Syscall param fsync(fd) contains uninitialised byte(s)
 
 Syscall param clone(flags) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param clone(child_stack) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param clone(parent_tidptr) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param clone(tlsinfo) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param clone(child_tidptr) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param clone(parent_tidptr) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 121:  __NR_setdomainname n/a
@@ -1379,11 +1379,11 @@ Syscall param clone(parent_tidptr) points to unaddressable byte(s)
 
 Syscall param uname(buf) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param uname(buf) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 123:     __NR_modify_ldt 3s 1m
@@ -1391,19 +1391,19 @@ Syscall param uname(buf) points to unaddressable byte(s)
 
 Syscall param modify_ldt(func) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param modify_ldt(ptr) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param modify_ldt(bytecount) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param modify_ldt(ptr) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 124:       __NR_adjtimex XXX
@@ -1414,41 +1414,41 @@ Syscall param modify_ldt(ptr) points to unaddressable byte(s)
 
 Syscall param mprotect(addr) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param mprotect(len) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param mprotect(prot) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 -----------------------------------------------------
 126:    __NR_sigprocmask 3s 2m
 -----------------------------------------------------
 
 Syscall param sigprocmask(how) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param sigprocmask(set) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param sigprocmask(oldset) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param sigprocmask(set) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is 0 bytes after a block of size 4 alloc'd
    at 0x........: malloc (vg_replace_malloc.c:...)
    by 0x........: main (scalar.c:24)
 
 Syscall param sigprocmask(oldset) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is 0 bytes after a block of size 4 alloc'd
    at 0x........: malloc (vg_replace_malloc.c:...)
    by 0x........: main (scalar.c:24)
@@ -1461,24 +1461,24 @@ Syscall param sigprocmask(oldset) points to unaddressable byte(s)
 
 Syscall param init_module(umod) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param init_module(len) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param init_module(uargs) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param init_module(umod) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 
 Syscall param init_module(uargs) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 129:  __NR_delete_module n/a
@@ -1492,23 +1492,23 @@ Syscall param init_module(uargs) points to unaddressable byte(s)
 
 Syscall param quotactl(cmd) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param quotactl(special) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param quotactl(id) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param quotactl(addr) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param quotactl(special) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 132:        __NR_getpgid 1s 0m
@@ -1516,14 +1516,14 @@ Syscall param quotactl(special) points to unaddressable byte(s)
 
 Syscall param getpgid(pid) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 -----------------------------------------------------
 133:         __NR_fchdir 1s 0m
 -----------------------------------------------------
 
 Syscall param fchdir(fd) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 -----------------------------------------------------
 134:        __NR_bdflush n/a
 -----------------------------------------------------
@@ -1536,7 +1536,7 @@ Syscall param fchdir(fd) contains uninitialised byte(s)
 
 Syscall param personality(persona) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 -----------------------------------------------------
 137:    __NR_afs_syscall ni
 -----------------------------------------------------
@@ -1546,41 +1546,41 @@ Syscall param personality(persona) contains uninitialised byte(s)
 
 Syscall param setfsuid16(uid) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 -----------------------------------------------------
 139:       __NR_setfsgid 1s 0m
 -----------------------------------------------------
 
 Syscall param setfsgid16(gid) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 -----------------------------------------------------
 140:        __NR__llseek 5s 1m
 -----------------------------------------------------
 
 Syscall param llseek(fd) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param llseek(offset_high) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param llseek(offset_low) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param llseek(result) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param llseek(whence) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param llseek(result) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 141:       __NR_getdents 3s 1m
@@ -1588,19 +1588,19 @@ Syscall param llseek(result) points to unaddressable byte(s)
 
 Syscall param getdents(fd) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param getdents(dirp) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param getdents(count) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param getdents(dirp) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 142:     __NR__newselect 5s 4m
@@ -1608,42 +1608,42 @@ Syscall param getdents(dirp) points to unaddressable byte(s)
 
 Syscall param select(n) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param select(readfds) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param select(writefds) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param select(exceptfds) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param select(timeout) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param select(readfds) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 
 Syscall param select(writefds) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 
 Syscall param select(exceptfds) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 
 Syscall param select(timeout) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 143:          __NR_flock 2s 0m
@@ -1651,30 +1651,30 @@ Syscall param select(timeout) points to unaddressable byte(s)
 
 Syscall param flock(fd) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param flock(operation) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 -----------------------------------------------------
 144:          __NR_msync 3s 1m
 -----------------------------------------------------
 
 Syscall param msync(start) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param msync(length) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param msync(flags) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param msync(start) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 145:          __NR_readv 3s 1m
@@ -1682,19 +1682,19 @@ Syscall param msync(start) points to unaddressable byte(s)
 
 Syscall param readv(fd) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param readv(vector) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param readv(count) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param readv(vector) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 146:         __NR_writev 3s 1m
@@ -1702,19 +1702,19 @@ Syscall param readv(vector) points to unaddressable byte(s)
 
 Syscall param writev(fd) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param writev(vector) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param writev(count) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param writev(vector) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 147:         __NR_getsid 1s 0m
@@ -1722,25 +1722,25 @@ Syscall param writev(vector) points to unaddressable byte(s)
 
 Syscall param getsid(pid) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 -----------------------------------------------------
 148:      __NR_fdatasync 1s 0m
 -----------------------------------------------------
 
 Syscall param fdatasync(fd) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 -----------------------------------------------------
 149:        __NR__sysctl 1s 1m
 -----------------------------------------------------
 
 Syscall param sysctl(args) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param sysctl(args) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 150:          __NR_mlock 2s 0m
@@ -1748,29 +1748,29 @@ Syscall param sysctl(args) points to unaddressable byte(s)
 
 Syscall param mlock(addr) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param mlock(len) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 -----------------------------------------------------
 151:        __NR_munlock 2s 0m
 -----------------------------------------------------
 
 Syscall param munlock(addr) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param munlock(len) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 -----------------------------------------------------
 152:       __NR_mlockall 1s 0m
 -----------------------------------------------------
 
 Syscall param mlockall(flags) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 -----------------------------------------------------
 153:     __NR_munlockall 0s 0m
 -----------------------------------------------------
@@ -1780,15 +1780,15 @@ Syscall param mlockall(flags) contains uninitialised byte(s)
 
 Syscall param sched_setparam(pid) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param sched_setparam(p) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param sched_setparam(p) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 155: __NR_sched_getparam 2s 1m
@@ -1796,15 +1796,15 @@ Syscall param sched_setparam(p) points to unaddressable byte(s)
 
 Syscall param sched_getparam(pid) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param sched_getparam(p) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param sched_getparam(p) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 156:__NR_sched_setscheduler 3s 1m
@@ -1812,19 +1812,19 @@ Syscall param sched_getparam(p) points to unaddressable byte(s)
 
 Syscall param sched_setscheduler(pid) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param sched_setscheduler(policy) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param sched_setscheduler(p) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param sched_setscheduler(p) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 157:__NR_sched_getscheduler 1s 0m
@@ -1832,7 +1832,7 @@ Syscall param sched_setscheduler(p) points to unaddressable byte(s)
 
 Syscall param sched_getscheduler(pid) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 -----------------------------------------------------
 158:    __NR_sched_yield 0s 0m
 -----------------------------------------------------
@@ -1842,14 +1842,14 @@ Syscall param sched_getscheduler(pid) contains uninitialised byte(s)
 
 Syscall param sched_get_priority_max(policy) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 -----------------------------------------------------
 160:__NR_sched_get_priority_min 1s 0m
 -----------------------------------------------------
 
 Syscall param sched_get_priority_min(policy) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 -----------------------------------------------------
 161:__NR_sched_rr_get_interval n/a
 -----------------------------------------------------
@@ -1859,20 +1859,20 @@ Syscall param sched_get_priority_min(policy) contains uninitialised byte(s)
 
 Syscall param nanosleep(req) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param nanosleep(rem) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param nanosleep(req) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 
 Syscall param nanosleep(rem) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 163:         __NR_mremap 5s 0m
@@ -1880,67 +1880,67 @@ Syscall param nanosleep(rem) points to unaddressable byte(s)
 
 Syscall param mremap(old_addr) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param mremap(old_size) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param mremap(new_size) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param mremap(flags) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param mremap(new_addr) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 -----------------------------------------------------
 164:      __NR_setresuid 3s 0m
 -----------------------------------------------------
 
 Syscall param setresuid16(ruid) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param setresuid16(euid) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param setresuid16(suid) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 -----------------------------------------------------
 165:      __NR_getresuid 3s 3m
 -----------------------------------------------------
 
 Syscall param getresuid16(ruid) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param getresuid16(euid) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param getresuid16(suid) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param getresuid16(ruid) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 
 Syscall param getresuid16(euid) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 
 Syscall param getresuid16(suid) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 166:           __NR_vm86 n/a
@@ -1954,19 +1954,19 @@ Syscall param getresuid16(suid) points to unaddressable byte(s)
 
 Syscall param poll(ufds) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param poll(nfds) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param poll(timeout) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param poll(ufds) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 169:     __NR_nfsservctl n/a
@@ -1977,44 +1977,44 @@ Syscall param poll(ufds) points to unaddressable byte(s)
 
 Syscall param setresgid16(rgid) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param setresgid16(egid) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param setresgid16(sgid) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 -----------------------------------------------------
 171:      __NR_getresgid 3s 3m
 -----------------------------------------------------
 
 Syscall param getresgid16(rgid) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param getresgid16(egid) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param getresgid16(sgid) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param getresgid16(rgid) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 
 Syscall param getresgid16(egid) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 
 Syscall param getresgid16(sgid) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 172:          __NR_prctl 5s 0m
@@ -2022,23 +2022,23 @@ Syscall param getresgid16(sgid) points to unaddressable byte(s)
 
 Syscall param prctl(option) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param prctl(arg2) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param prctl(arg3) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param prctl(arg4) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param prctl(arg5) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 -----------------------------------------------------
 173:   __NR_rt_sigreturn n/a
 -----------------------------------------------------
@@ -2048,42 +2048,42 @@ Syscall param prctl(arg5) contains uninitialised byte(s)
 
 Syscall param rt_sigaction(signum) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param rt_sigaction(act) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param rt_sigaction(oldact) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param rt_sigaction(sigsetsize) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param rt_sigaction(act->sa_handler) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is 4 bytes after a block of size 4 alloc'd
    at 0x........: malloc (vg_replace_malloc.c:...)
    by 0x........: main (scalar.c:24)
 
 Syscall param rt_sigaction(act->sa_mask) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 
 Syscall param rt_sigaction(act->sa_flags) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is 8 bytes after a block of size 4 alloc'd
    at 0x........: malloc (vg_replace_malloc.c:...)
    by 0x........: main (scalar.c:24)
 
 Syscall param rt_sigaction(oldact) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is 4 bytes after a block of size 4 alloc'd
    at 0x........: malloc (vg_replace_malloc.c:...)
    by 0x........: main (scalar.c:24)
@@ -2093,28 +2093,28 @@ Syscall param rt_sigaction(oldact) points to unaddressable byte(s)
 
 Syscall param rt_sigprocmask(how) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param rt_sigprocmask(set) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param rt_sigprocmask(oldset) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param rt_sigprocmask(sigsetsize) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param rt_sigprocmask(set) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 
 Syscall param rt_sigprocmask(oldset) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 176:  __NR_rt_sigpending 2s 1m
@@ -2122,15 +2122,15 @@ Syscall param rt_sigprocmask(oldset) points to unaddressable byte(s)
 
 Syscall param rt_sigpending(set) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param rt_sigpending(sigsetsize) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param rt_sigpending(set) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 177:__NR_rt_sigtimedwait 4s 3m
@@ -2138,33 +2138,33 @@ Syscall param rt_sigpending(set) points to unaddressable byte(s)
 
 Syscall param rt_sigtimedwait(set) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param rt_sigtimedwait(info) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param rt_sigtimedwait(timeout) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param rt_sigtimedwait(sigsetsize) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param rt_sigtimedwait(set) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 
 Syscall param rt_sigtimedwait(info) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 
 Syscall param rt_sigtimedwait(timeout) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 178:__NR_rt_sigqueueinfo 3s 1m
@@ -2172,19 +2172,19 @@ Syscall param rt_sigtimedwait(timeout) points to unaddressable byte(s)
 
 Syscall param rt_sigqueueinfo(pid) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param rt_sigqueueinfo(sig) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param rt_sigqueueinfo(uinfo) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param rt_sigqueueinfo(uinfo) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 179:  __NR_rt_sigsuspend ignore
@@ -2195,27 +2195,27 @@ Syscall param rt_sigqueueinfo(uinfo) points to unaddressable byte(s)
 
 Syscall param pread64(fd) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param pread64(buf) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param pread64(count) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param pread64(offset_low32) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param pread64(offset_high32) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param pread64(buf) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 181:       __NR_pwrite64 5s 1m
@@ -2223,27 +2223,27 @@ Syscall param pread64(buf) points to unaddressable byte(s)
 
 Syscall param pwrite64(fd) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param pwrite64(buf) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param pwrite64(count) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param pwrite64(offset_low32) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param pwrite64(offset_high32) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param pwrite64(buf) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 182:          __NR_chown 3s 1m
@@ -2251,19 +2251,19 @@ Syscall param pwrite64(buf) points to unaddressable byte(s)
 
 Syscall param chown16(path) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param chown16(owner) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param chown16(group) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param chown16(path) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 183:         __NR_getcwd 2s 1m
@@ -2271,15 +2271,15 @@ Syscall param chown16(path) points to unaddressable byte(s)
 
 Syscall param getcwd(buf) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param getcwd(size) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param getcwd(buf) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 184:         __NR_capget 2s 2m
@@ -2287,20 +2287,20 @@ Syscall param getcwd(buf) points to unaddressable byte(s)
 
 Syscall param capget(header) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param capget(data) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param capget(header) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 
 Syscall param capget(data) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 185:         __NR_capset 2s 2m
@@ -2308,20 +2308,20 @@ Syscall param capget(data) points to unaddressable byte(s)
 
 Syscall param capset(header) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param capset(data) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param capset(header) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 
 Syscall param capset(data) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 186:    __NR_sigaltstack 2s 2m
@@ -2329,20 +2329,20 @@ Syscall param capset(data) points to unaddressable byte(s)
 
 Syscall param sigaltstack(ss) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param sigaltstack(oss) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param sigaltstack(ss) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is on thread 1's stack
 
 Syscall param sigaltstack(oss) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is on thread 1's stack
 -----------------------------------------------------
 187:       __NR_sendfile 4s 1m
@@ -2350,23 +2350,23 @@ Syscall param sigaltstack(oss) points to unaddressable byte(s)
 
 Syscall param sendfile(out_fd) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param sendfile(in_fd) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param sendfile(offset) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param sendfile(count) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param sendfile(offset) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 188:        __NR_getpmsg 5s 0m
@@ -2374,46 +2374,46 @@ Syscall param sendfile(offset) points to unaddressable byte(s)
 
 Syscall param getpmsg(fd) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param getpmsg(ctrl) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param getpmsg(data) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param getpmsg(bandp) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param getpmsg(flagsp) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 -----------------------------------------------------
 189:        __NR_putpmsg 5s 0m
 -----------------------------------------------------
 
 Syscall param putpmsg(fd) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param putpmsg(ctrl) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param putpmsg(data) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param putpmsg(band) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param putpmsg(flags) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 -----------------------------------------------------
 190:          __NR_vfork other
 -----------------------------------------------------
@@ -2423,15 +2423,15 @@ Syscall param putpmsg(flags) contains uninitialised byte(s)
 
 Syscall param getrlimit(resource) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param getrlimit(rlim) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param getrlimit(rlim) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 192:          __NR_mmap2 5s 0m
@@ -2439,42 +2439,42 @@ Syscall param getrlimit(rlim) points to unaddressable byte(s)
 
 Syscall param mmap2(start) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param mmap2(length) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param mmap2(prot) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param mmap2(flags) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param mmap2(fd) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 -----------------------------------------------------
 193:     __NR_truncate64 3s 1m
 -----------------------------------------------------
 
 Syscall param truncate64(path) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param truncate64(length_low32) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param truncate64(length_high32) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param truncate64(path) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 194:    __NR_ftruncate64 3s 0m
@@ -2482,35 +2482,35 @@ Syscall param truncate64(path) points to unaddressable byte(s)
 
 Syscall param ftruncate64(fd) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param ftruncate64(length_low32) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param ftruncate64(length_high32) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 -----------------------------------------------------
 195:         __NR_stat64 2s 2m
 -----------------------------------------------------
 
 Syscall param stat64(file_name) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param stat64(buf) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param stat64(file_name) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 
 Syscall param stat64(buf) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 196:        __NR_lstat64 2s 2m
@@ -2518,20 +2518,20 @@ Syscall param stat64(buf) points to unaddressable byte(s)
 
 Syscall param lstat64(file_name) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param lstat64(buf) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param lstat64(file_name) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 
 Syscall param lstat64(buf) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 197:        __NR_fstat64 2s 1m
@@ -2539,15 +2539,15 @@ Syscall param lstat64(buf) points to unaddressable byte(s)
 
 Syscall param fstat64(fd) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param fstat64(buf) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param fstat64(buf) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 198:       __NR_lchown32 3s 1m
@@ -2555,19 +2555,19 @@ Syscall param fstat64(buf) points to unaddressable byte(s)
 
 Syscall param lchown(path) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param lchown(owner) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param lchown(group) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param lchown(path) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 199:       __NR_getuid32 0s 0m
@@ -2587,37 +2587,37 @@ Syscall param lchown(path) points to unaddressable byte(s)
 
 Syscall param setreuid(ruid) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param setreuid(euid) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 -----------------------------------------------------
 204:     __NR_setregid32 2s 0m
 -----------------------------------------------------
 
 Syscall param setregid(rgid) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param setregid(egid) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 -----------------------------------------------------
 205:    __NR_getgroups32 2s 1m
 -----------------------------------------------------
 
 Syscall param getgroups(size) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param getgroups(list) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param getgroups(list) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 206:    __NR_setgroups32 2s 1m
@@ -2625,15 +2625,15 @@ Syscall param getgroups(list) points to unaddressable byte(s)
 
 Syscall param setgroups(size) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param setgroups(list) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param setgroups(list) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 207:       __NR_fchown32 3s 0m
@@ -2641,59 +2641,59 @@ Syscall param setgroups(list) points to unaddressable byte(s)
 
 Syscall param fchown(fd) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param fchown(owner) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param fchown(group) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 -----------------------------------------------------
 208:    __NR_setresuid32 3s 0m
 -----------------------------------------------------
 
 Syscall param setresuid(ruid) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param setresuid(euid) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param setresuid(suid) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 -----------------------------------------------------
 209:    __NR_getresuid32 3s 3m
 -----------------------------------------------------
 
 Syscall param getresuid(ruid) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param getresuid(euid) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param getresuid(suid) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param getresuid(ruid) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 
 Syscall param getresuid(euid) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 
 Syscall param getresuid(suid) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 210:    __NR_setresgid32 3s 0m
@@ -2701,44 +2701,44 @@ Syscall param getresuid(suid) points to unaddressable byte(s)
 
 Syscall param setresgid(rgid) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param setresgid(egid) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param setresgid(sgid) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 -----------------------------------------------------
 211:    __NR_getresgid32 3s 3m
 -----------------------------------------------------
 
 Syscall param getresgid(rgid) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param getresgid(egid) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param getresgid(sgid) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param getresgid(rgid) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 
 Syscall param getresgid(egid) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 
 Syscall param getresgid(sgid) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 212:        __NR_chown32 3s 1m
@@ -2746,19 +2746,19 @@ Syscall param getresgid(sgid) points to unaddressable byte(s)
 
 Syscall param chown(path) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param chown(owner) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param chown(group) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param chown(path) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 213:       __NR_setuid32 1s 0m
@@ -2766,28 +2766,28 @@ Syscall param chown(path) points to unaddressable byte(s)
 
 Syscall param setuid(uid) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 -----------------------------------------------------
 214:       __NR_setgid32 1s 0m
 -----------------------------------------------------
 
 Syscall param setgid(gid) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 -----------------------------------------------------
 215:     __NR_setfsuid32 1s 0m
 -----------------------------------------------------
 
 Syscall param setfsuid(uid) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 -----------------------------------------------------
 216:     __NR_setfsgid32 1s 0m
 -----------------------------------------------------
 
 Syscall param setfsgid(gid) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 -----------------------------------------------------
 217:     __NR_pivot_root n/a
 -----------------------------------------------------
@@ -2797,19 +2797,19 @@ Syscall param setfsgid(gid) contains uninitialised byte(s)
 
 Syscall param mincore(start) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param mincore(length) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param mincore(vec) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param mincore(vec) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 219:        __NR_madvise 3s 0m
@@ -2817,34 +2817,34 @@ Syscall param mincore(vec) points to unaddressable byte(s)
 
 Syscall param madvise(start) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param madvise(length) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param madvise(advice) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 -----------------------------------------------------
 220:     __NR_getdents64 3s 1m
 -----------------------------------------------------
 
 Syscall param getdents64(fd) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param getdents64(dirp) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param getdents64(count) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param getdents64(dirp) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 221:        __NR_fcntl64 (GETFD) 2s 0m
@@ -2852,25 +2852,25 @@ Syscall param getdents64(dirp) points to unaddressable byte(s)
 
 Syscall param fcntl64(fd) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param fcntl64(cmd) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 -----------------------------------------------------
 221:        __NR_fcntl64 (DUPFD) 1s 0m
 -----------------------------------------------------
 
 Syscall param fcntl64(arg) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 -----------------------------------------------------
 221:        __NR_fcntl64 (GETLK) 1s 0m
 -----------------------------------------------------
 
 Syscall param fcntl64(lock) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 -----------------------------------------------------
 222:                 222 ni
 -----------------------------------------------------
@@ -2889,37 +2889,37 @@ Syscall param fcntl64(lock) contains uninitialised byte(s)
 
 Syscall param setxattr(path) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param setxattr(name) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param setxattr(value) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param setxattr(size) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param setxattr(flags) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param setxattr(path) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 
 Syscall param setxattr(name) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 
 Syscall param setxattr(value) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 227:      __NR_lsetxattr 5s 3m
@@ -2927,37 +2927,37 @@ Syscall param setxattr(value) points to unaddressable byte(s)
 
 Syscall param lsetxattr(path) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param lsetxattr(name) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param lsetxattr(value) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param lsetxattr(size) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param lsetxattr(flags) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param lsetxattr(path) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 
 Syscall param lsetxattr(name) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 
 Syscall param lsetxattr(value) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 228:      __NR_fsetxattr 5s 2m
@@ -2965,32 +2965,32 @@ Syscall param lsetxattr(value) points to unaddressable byte(s)
 
 Syscall param fsetxattr(fd) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param fsetxattr(name) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param fsetxattr(value) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param fsetxattr(size) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param fsetxattr(flags) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param fsetxattr(name) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 
 Syscall param fsetxattr(value) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 229:       __NR_getxattr 4s 3m
@@ -2998,33 +2998,33 @@ Syscall param fsetxattr(value) points to unaddressable byte(s)
 
 Syscall param getxattr(path) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param getxattr(name) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param getxattr(value) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param getxattr(size) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param getxattr(path) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 
 Syscall param getxattr(name) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 
 Syscall param getxattr(value) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 230:      __NR_lgetxattr 4s 3m
@@ -3032,33 +3032,33 @@ Syscall param getxattr(value) points to unaddressable byte(s)
 
 Syscall param lgetxattr(path) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param lgetxattr(name) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param lgetxattr(value) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param lgetxattr(size) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param lgetxattr(path) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 
 Syscall param lgetxattr(name) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 
 Syscall param lgetxattr(value) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 231:      __NR_fgetxattr 4s 2m
@@ -3066,28 +3066,28 @@ Syscall param lgetxattr(value) points to unaddressable byte(s)
 
 Syscall param fgetxattr(fd) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param fgetxattr(name) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param fgetxattr(value) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param fgetxattr(size) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param fgetxattr(name) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 
 Syscall param fgetxattr(value) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 232:      __NR_listxattr 3s 2m
@@ -3095,24 +3095,24 @@ Syscall param fgetxattr(value) points to unaddressable byte(s)
 
 Syscall param listxattr(path) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param listxattr(list) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param listxattr(size) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param listxattr(path) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 
 Syscall param listxattr(list) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 233:     __NR_llistxattr 3s 2m
@@ -3120,24 +3120,24 @@ Syscall param listxattr(list) points to unaddressable byte(s)
 
 Syscall param llistxattr(path) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param llistxattr(list) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param llistxattr(size) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param llistxattr(path) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 
 Syscall param llistxattr(list) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 234:     __NR_flistxattr 3s 1m
@@ -3145,19 +3145,19 @@ Syscall param llistxattr(list) points to unaddressable byte(s)
 
 Syscall param flistxattr(fd) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param flistxattr(list) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param flistxattr(size) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param flistxattr(list) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 235:    __NR_removexattr 2s 2m
@@ -3165,20 +3165,20 @@ Syscall param flistxattr(list) points to unaddressable byte(s)
 
 Syscall param removexattr(path) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param removexattr(name) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param removexattr(path) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 
 Syscall param removexattr(name) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 236:   __NR_lremovexattr 2s 2m
@@ -3186,20 +3186,20 @@ Syscall param removexattr(name) points to unaddressable byte(s)
 
 Syscall param lremovexattr(path) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param lremovexattr(name) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param lremovexattr(path) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 
 Syscall param lremovexattr(name) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 237:   __NR_fremovexattr 2s 1m
@@ -3207,15 +3207,15 @@ Syscall param lremovexattr(name) points to unaddressable byte(s)
 
 Syscall param fremovexattr(fd) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param fremovexattr(name) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param fremovexattr(name) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 238:          __NR_tkill n/a
@@ -3226,23 +3226,23 @@ Syscall param fremovexattr(name) points to unaddressable byte(s)
 
 Syscall param sendfile64(out_fd) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param sendfile64(in_fd) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param sendfile64(offset) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param sendfile64(count) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param sendfile64(offset) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 240:          __NR_futex 5s 2m
@@ -3250,32 +3250,32 @@ Syscall param sendfile64(offset) points to unaddressable byte(s)
 
 Syscall param futex(futex) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param futex(op) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param futex(val) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param futex(utime) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param futex(uaddr2) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param futex(futex) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 
 Syscall param futex(timeout) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 241:__NR_sched_setaffinity 3s 1m
@@ -3283,19 +3283,19 @@ Syscall param futex(timeout) points to unaddressable byte(s)
 
 Syscall param sched_setaffinity(pid) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param sched_setaffinity(len) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param sched_setaffinity(mask) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param sched_setaffinity(mask) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 242:__NR_sched_getaffinity 3s 1m
@@ -3303,19 +3303,19 @@ Syscall param sched_setaffinity(mask) points to unaddressable byte(s)
 
 Syscall param sched_getaffinity(pid) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param sched_getaffinity(len) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param sched_getaffinity(mask) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param sched_getaffinity(mask) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 243:__NR_set_thread_area 1s 1m
@@ -3323,11 +3323,11 @@ Syscall param sched_getaffinity(mask) points to unaddressable byte(s)
 
 Syscall param set_thread_area(u_info) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param set_thread_area(u_info) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 244:__NR_get_thread_area 1s 1m
@@ -3335,11 +3335,11 @@ Syscall param set_thread_area(u_info) points to unaddressable byte(s)
 
 Syscall param get_thread_area(u_info) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param get_thread_area(u_info) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 245:       __NR_io_setup 2s 1m
@@ -3347,15 +3347,15 @@ Syscall param get_thread_area(u_info) points to unaddressable byte(s)
 
 Syscall param io_setup(nr_events) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param io_setup(ctxp) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param io_setup(ctxp) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 246:     __NR_io_destroy 1s 0m
@@ -3363,39 +3363,39 @@ Syscall param io_setup(ctxp) points to unaddressable byte(s)
 
 Syscall param io_destroy(ctx) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 -----------------------------------------------------
 247:   __NR_io_getevents 5s 2m
 -----------------------------------------------------
 
 Syscall param io_getevents(ctx_id) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param io_getevents(min_nr) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param io_getevents(nr) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param io_getevents(events) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param io_getevents(timeout) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param io_getevents(events) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 
 Syscall param io_getevents(timeout) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 248:      __NR_io_submit 3s 1m
@@ -3403,19 +3403,19 @@ Syscall param io_getevents(timeout) points to unaddressable byte(s)
 
 Syscall param io_submit(ctx_id) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param io_submit(nr) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param io_submit(iocbpp) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param io_submit(iocbpp) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 249:      __NR_io_cancel 3s 2m
@@ -3423,24 +3423,24 @@ Syscall param io_submit(iocbpp) points to unaddressable byte(s)
 
 Syscall param io_cancel(ctx_id) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param io_cancel(iocb) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param io_cancel(result) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param io_cancel(iocb) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 
 Syscall param io_cancel(result) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 250:      __NR_fadvise64 n/a
@@ -3457,23 +3457,23 @@ Syscall param io_cancel(result) points to unaddressable byte(s)
 
 Syscall param lookup_dcookie(cookie_low32) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param lookup_dcookie(cookie_high32) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param lookup_dcookie(buf) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param lookup_dcookie(len) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param lookup_dcookie(buf) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 254:   __NR_epoll_create 1s 0m
@@ -3481,30 +3481,30 @@ Syscall param lookup_dcookie(buf) points to unaddressable byte(s)
 
 Syscall param epoll_create(size) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 -----------------------------------------------------
 255:      __NR_epoll_ctl 4s 1m
 -----------------------------------------------------
 
 Syscall param epoll_ctl(epfd) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param epoll_ctl(op) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param epoll_ctl(fd) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param epoll_ctl(event) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param epoll_ctl(event) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 256:     __NR_epoll_wait 4s 1m
@@ -3512,23 +3512,23 @@ Syscall param epoll_ctl(event) points to unaddressable byte(s)
 
 Syscall param epoll_wait(epfd) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param epoll_wait(events) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param epoll_wait(maxevents) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param epoll_wait(timeout) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param epoll_wait(events) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 257:__NR_remap_file_pages n/a
@@ -3539,31 +3539,31 @@ Syscall param epoll_wait(events) points to unaddressable byte(s)
 
 Syscall param set_tid_address(tidptr) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 -----------------------------------------------------
 259:   __NR_timer_create 3s 2m
 -----------------------------------------------------
 
 Syscall param timer_create(clockid) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param timer_create(evp) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param timer_create(timerid) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param timer_create(evp) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 
 Syscall param timer_create(timerid) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 260:  __NR_timer_settime 4s 2m
@@ -3571,28 +3571,28 @@ Syscall param timer_create(timerid) points to unaddressable byte(s)
 
 Syscall param timer_settime(timerid) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param timer_settime(flags) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param timer_settime(value) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param timer_settime(ovalue) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param timer_settime(value) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 
 Syscall param timer_settime(ovalue) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 261:  __NR_timer_gettime 2s 1m
@@ -3600,15 +3600,15 @@ Syscall param timer_settime(ovalue) points to unaddressable byte(s)
 
 Syscall param timer_gettime(timerid) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param timer_gettime(value) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param timer_gettime(value) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 262:__NR_timer_getoverrun 1s 0m
@@ -3616,29 +3616,29 @@ Syscall param timer_gettime(value) points to unaddressable byte(s)
 
 Syscall param timer_getoverrun(timerid) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 -----------------------------------------------------
 263:   __NR_timer_delete 1s 0m
 -----------------------------------------------------
 
 Syscall param timer_delete(timerid) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 -----------------------------------------------------
 264:  __NR_clock_settime 2s 1m
 -----------------------------------------------------
 
 Syscall param clock_settime(clk_id) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param clock_settime(tp) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param clock_settime(tp) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 265:  __NR_clock_gettime 2s 1m
@@ -3646,15 +3646,15 @@ Syscall param clock_settime(tp) points to unaddressable byte(s)
 
 Syscall param clock_gettime(clk_id) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param clock_gettime(tp) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param clock_gettime(tp) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 266:   __NR_clock_getres 2s 1m
@@ -3662,15 +3662,15 @@ Syscall param clock_gettime(tp) points to unaddressable byte(s)
 
 Syscall param clock_getres(clk_id) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param clock_getres(res) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param clock_getres(res) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 267:__NR_clock_nanosleep n/a
@@ -3681,24 +3681,24 @@ Syscall param clock_getres(res) points to unaddressable byte(s)
 
 Syscall param statfs64(path) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param statfs64(size) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param statfs64(buf) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param statfs64(path) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 
 Syscall param statfs64(buf) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 269:      __NR_fstatfs64 3s 1m
@@ -3706,19 +3706,19 @@ Syscall param statfs64(buf) points to unaddressable byte(s)
 
 Syscall param fstatfs64(fd) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param fstatfs64(size) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param fstatfs64(buf) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param fstatfs64(buf) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 270:         __NR_tgkill n/a
@@ -3729,20 +3729,20 @@ Syscall param fstatfs64(buf) points to unaddressable byte(s)
 
 Syscall param utimes(filename) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param utimes(tvp) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param utimes(filename) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 
 Syscall param utimes(tvp) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 272:   __NR_fadvise64_64 n/a
@@ -3765,33 +3765,33 @@ Syscall param utimes(tvp) points to unaddressable byte(s)
 
 Syscall param mq_open(name) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param mq_open(oflag) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param mq_open(mode) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param mq_open(attr) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param mq_open(name) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 
 Syscall param mq_open(attr->mq_maxmsg) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 
 Syscall param mq_open(attr->mq_msgsize) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 278:      __NR_mq_unlink 1s 1m
@@ -3799,11 +3799,11 @@ Syscall param mq_open(attr->mq_msgsize) points to unaddressable byte(s)
 
 Syscall param mq_unlink(name) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param mq_unlink(name) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 279:   __NR_mq_timedsend 5s 2m
@@ -3811,32 +3811,32 @@ Syscall param mq_unlink(name) points to unaddressable byte(s)
 
 Syscall param mq_timedsend(mqdes) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param mq_timedsend(msg_ptr) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param mq_timedsend(msg_len) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param mq_timedsend(msg_prio) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param mq_timedsend(abs_timeout) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param mq_timedsend(msg_ptr) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 
 Syscall param mq_timedsend(abs_timeout) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 280:__NR_mq_timedreceive 5s 3m
@@ -3844,37 +3844,37 @@ Syscall param mq_timedsend(abs_timeout) points to unaddressable byte(s)
 
 Syscall param mq_timedreceive(mqdes) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param mq_timedreceive(msg_ptr) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param mq_timedreceive(msg_len) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param mq_timedreceive(msg_prio) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param mq_timedreceive(abs_timeout) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param mq_timedreceive(msg_ptr) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 
 Syscall param mq_timedreceive(msg_prio) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 
 Syscall param mq_timedreceive(abs_timeout) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 281:      __NR_mq_notify 2s 1m
@@ -3882,15 +3882,15 @@ Syscall param mq_timedreceive(abs_timeout) points to unaddressable byte(s)
 
 Syscall param mq_notify(mqdes) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param mq_notify(notification) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param mq_notify(notification) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 282:  __NR_mq_getsetattr 3s 2m
@@ -3898,24 +3898,24 @@ Syscall param mq_notify(notification) points to unaddressable byte(s)
 
 Syscall param mq_getsetattr(mqdes) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param mq_getsetattr(mqstat) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param mq_getsetattr(omqstat) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param mq_getsetattr(mqstat->mq_flags) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 
 Syscall param mq_getsetattr(omqstat) points to unaddressable byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
  Address 0x........ is not stack'd, malloc'd or (recently) free'd
 -----------------------------------------------------
 283: __NR_sys_kexec_load ni
@@ -3934,4 +3934,4 @@ it at http://valgrind.org/support/bug_reports.html.
 
 Syscall param exit(exitcode) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
index 7347116123d02b0c4e59051b3c0d17815b15e18b..6bcf0fea821078fe3a98f38d56f4b6930d23c55d 100644 (file)
@@ -3,4 +3,4 @@
 -----------------------------------------------------
 Syscall param exit_group(exit_code) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
index 968650e3757ecf563ea57a914bcb78b46aa0f022..6521cbe959d3bb547839d17eb26c604dc4cc01d8 100644 (file)
@@ -1,11 +1,11 @@
 Syscall param (syscallno) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param write(fd) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Syscall param write(count) contains uninitialised byte(s)
    at 0x........: syscall (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
index b35d8ffc9fc83d2add5e7d234d024862b1f69465..978ad39171945f652620abd4a3a31c0929f5ffee 100644 (file)
@@ -4,7 +4,7 @@ FILE DESCRIPTORS: 4 open at exit.
 Open file descriptor .: /tmp/file
 
    at 0x........: creat (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Open file descriptor .: .
    <inherited from parent>
index 4e9b9fbc9613a8b4389de4cc15734128d4df944f..07326124afab8c987ed7922ce7af6590b92f2789 100644 (file)
@@ -3,11 +3,11 @@
 FILE DESCRIPTORS: 5 open at exit.
 Open file descriptor .: /dev/null
    at 0x........: dup (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Open file descriptor .: /dev/null
    at 0x........: open (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Open file descriptor .: .
    <inherited from parent>
index 544022ad84ef2f665e8d8ea7cbb49ea9d063d763..62ba9fe46cb8ea1389354664817743359fd4e7e4 100644 (file)
@@ -3,7 +3,7 @@
 FILE DESCRIPTORS: 5 open at exit.
 Open file descriptor .: /dev/null
    at 0x........: dup (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Open file descriptor .: /dev/null
    at 0x........: open (in /...libc...)
index bb0dafcd054152faa73289b4dd8c5ea47a9282bb..aea77d98e3598c2d8b71ac5f5ad41189e4b0edef 100644 (file)
@@ -3,15 +3,15 @@
 FILE DESCRIPTORS: 6 open at exit.
 Open file descriptor .: /dev/null
    at 0x........: dup2 (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Open file descriptor .: /dev/null
    at 0x........: dup2 (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Open file descriptor .: /dev/null
    at 0x........: open (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Open file descriptor .: .
    <inherited from parent>
index d5cb86f824f2d88cc7bd2112bc38392ef2ee2d9c..b3688da94bff70ed48aede96b84cbc0dd4cc0154 100644 (file)
@@ -3,11 +3,11 @@
 FILE DESCRIPTORS: 6 open at exit.
 Open file descriptor .: /dev/null
    at 0x........: dup2 (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Open file descriptor .: /dev/null
    at 0x........: dup2 (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Open file descriptor .: /dev/null
    at 0x........: open (in /...libc...)
index f5b799bfc89fa0627ed18f50a4faaf98e384d70f..1626954e70ac589aa4af21c6cb01cf2bfef0df40 100644 (file)
@@ -7,7 +7,7 @@ Open file descriptor .: /dev/null
 
 Open file descriptor .: /dev/null
    at 0x........: open (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Open file descriptor .: .
    <inherited from parent>
index 9676f943b2f15c2c2bbf85d95fca1449e485be35..9d57cbe0067cbc7aa16faed4932f5e7e7ae98bf7 100644 (file)
@@ -8,7 +8,7 @@ Open file descriptor .: /dev/null
 
 Open file descriptor .: /dev/null
    at 0x........: open (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Open file descriptor .: .
    <inherited from parent>
index 1d13b599ac86d8b26f48a6093be7b256b601941a..0b907a81c9c501cdd5b796ef8fbd38e3363f90b3 100644 (file)
@@ -8,7 +8,7 @@ Open file descriptor .: /dev/null
 
 Open file descriptor .: /dev/null
    at 0x........: open (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Open file descriptor .: .
    <inherited from parent>
index 85b3504b31fc1466ec5ee1763bcec520c00d80d3..089931fdc8ce68a01943394e0c2ce9a729ce4e35 100644 (file)
@@ -3,7 +3,7 @@
 FILE DESCRIPTORS: 4 open at exit.
 Open file descriptor .: /dev/null
    at 0x........: open (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Open file descriptor .: .
    <inherited from parent>
index 2457340c861efb29798c7e2b8eaaad125ffeb73b..c67b386480d589564eae507d4fad713a4f8387d8 100644 (file)
@@ -3,11 +3,11 @@
 FILE DESCRIPTORS: 5 open at exit.
 Open file descriptor .:
    at 0x........: pipe (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Open file descriptor .:
    at 0x........: pipe (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Open file descriptor .: .
    <inherited from parent>
index 0b838b9dc2007f00c01598d544a8d101c2c3cd3c..f08267585791bf6524680181b27e88b377685bd3 100644 (file)
@@ -3,11 +3,11 @@
 FILE DESCRIPTORS: 5 open at exit.
 Open AF_UNIX socket .: <unknown>
    at 0x........: socketpair (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Open AF_UNIX socket .: <unknown>
    at 0x........: socketpair (in /...libc...)
-   by 0x........: (below main) (in /...libc...)
+   by 0x........: (below main)
 
 Open file descriptor .: .
    <inherited from parent>
index 67aa0cabe3b6cb4ae8b4cf4a1e5fe9070cd1f234..83e92d792c756df4aac7f5a91d64b8db7ad43991 100755 (executable)
@@ -18,7 +18,9 @@ while (<>)
     s/\(in \/.*libc.*\)$/(in \/...libc...)/;
     s/\(within \/.*libc.*\)$/(within \/...libc...)/;
 
-    s/\(below main\) \(.+\.[cS]:\d+\)$/(below main) (in \/...libc...)/;
+    # Remove the filename -- on some platforms (eg. Linux) it will be in
+    # libc, on some (eg. Darwin) it will be in the main executable.
+    s/\(below main\) \(.+\)$/(below main)/;
 
     s/($libc_symbols) \(.+\.[cS]:\d+\)$/$1 (in \/...libc...)/;