Skip to content

Commit c0ca9b7

Browse files
authored
Merge pull request #6404 from trailofbits/Henrik/latest-polytracker-llvm
Using latests polytracker-llvm build on ubuntu focal.
2 parents c6ac074 + 9770aba commit c0ca9b7

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM trailofbits/polytracker-llvm:851cca46f066c7cbbc3cd0c876bb5e602c99afca
1+
FROM trailofbits/polytracker-llvm:f1385f079c2573f2b31834354310e7265a9bb4b3
22

33
MAINTAINER Evan Sultanik <[email protected]>
44
MAINTAINER Carson Harmon <[email protected]>

examples/Dockerfile-mupdf.demo

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
FROM ubuntu:bionic AS sources
1+
FROM ubuntu:focal AS sources
22

33
RUN mkdir -p /polytracker/the_klondike
44

55
WORKDIR /polytracker/the_klondike
66

7+
ENV DEBIAN_FRONTEND=noninteractive
78
RUN apt-get update && apt-get -y upgrade && apt-get install -y git pkg-config
89

910
RUN git clone --recursive git://git.ghostscript.com/mupdf.git

polytracker/src/taint_sources/taint_sources.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -443,10 +443,10 @@ EXT_C_FUNC int __dfsw_munmap(void *addr, size_t length, dfsan_label addr_label,
443443
return ret;
444444
}
445445

446-
EXT_C_FUNC int __dfsw__IO_putc(int __c, FILE *__fp, dfsan_label c_label,
447-
dfsan_label fp_label, dfsan_label *ret_label) {
446+
EXT_C_FUNC int __dfsw__putc(int __c, FILE *__fp, dfsan_label c_label,
447+
dfsan_label fp_label, dfsan_label *ret_label) {
448448
*ret_label = 0;
449-
return _IO_putc(__c, __fp);
449+
return putc(__c, __fp);
450450
}
451451
EXT_C_FUNC int __dfsw_pthread_cond_broadcast(pthread_cond_t *cond,
452452
dfsan_label cond_label,

0 commit comments

Comments
 (0)