Summary: | Valgrind: Unidentified pointer in pdf_write_cmap() - not suppressed | ||
---|---|---|---|
Product: | Ghostscript | Reporter: | Alex Cherepanov <alex> |
Component: | PDF Writer | Assignee: | Default assignee <ghostpdl-bugs> |
Status: | RESOLVED DUPLICATE | ||
Severity: | normal | ||
Priority: | P4 | ||
Version: | master | ||
Hardware: | PC | ||
OS: | Linux | ||
Customer: | Word Size: | --- |
Description
Alex Cherepanov
2006-09-24 04:39:23 UTC
It is well known that Valgrind doesn't report movement or calculations with uninitialised data - only jumps that depend on them and some system calls. In this case, uninitialised data are detected when fflush() CRTL function calls write() system call. The data were copied to the file buffer earlier. The offending bytes in the buffer are a PDF font subset prefixes, which indicates that the prefix was calculated from a (partly) uninitialised object body. |