Displaying 1 result from an estimated 1 matches for "fsdither".
2018 Nov 08
4
LLVM Call Graph may not cover all calls
...ph doesn't cover all call relationship.
Actually, I am doing static analysis on *CVE-2014-8130*, which is a zero
division on libtiff/tif_write.c TIFFWriteScanline. (see
https://security-tracker.debian.org/tracker/CVE-2014-8130)
Theoretically, the main function in tiffdither.c will call fsdither, and
fsdither will call TIFFWriteScanLine. main (tiffdither.c) -> fsdither
(tiffdither.c) -> TIFFWriteScanLine (tif_write.c)
I want to get a call graph of the buggy program tiffdither but I find
the call graph generated doesn't cover the call relationship from fsdither
-> TIFFWri...