https://bugs.kde.org/show_bug.cgi?id=458212

--- Comment #2 from Jim Kuhn <[email protected]> ---

(In reply to Paul Floyd from comment #1)
[...]
> Can you provide a small testcase to reproduce?

#include <unistd.h>
#include <stdlib.h>

int main(int argc, char** argv) {
  if (!fork()) {
    abort();
  }
  malloc(10); // something for memcheck
}

$ valgrind --trace-children=yes --xml=yes --xml-file=test.memcheck ./a.out
$ grep valgrindoutput test.memcheck
<valgrindoutput>
</valgrindoutput>
</valgrindoutput>
```

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to