DragonFlyBSD Kernel Audit
DF-0050 / build.sh
← back to finding ↓ download raw
1
2
3
4
5
6
7
8
#!/bin/sh
# DF-0050 repro build: cc -o msg_leak msg_leak.c
set -e
cd "$(dirname "$0")"
echo "+ cc -o msg_leak msg_leak.c"
cc -o msg_leak msg_leak.c
echo "BUILD_EXIT=$?"
ls -l msg_leak