diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2018-01-30 10:52:58 +0100 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2018-01-31 15:50:36 +0100 |
| commit | d39a1fe856d42409f18020bee7625dd5563cb227 (patch) | |
| tree | 81586011479322e09aef104ebb7bd4bf2a6f3d95 /tools | |
| parent | ccac2d6f42e0a797bfe5d02a709885cd5617eb9d (diff) | |
tools/syz-execprog: fix parsing of multiple logs
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/syz-execprog/execprog.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/syz-execprog/execprog.go b/tools/syz-execprog/execprog.go index ef5a0479a..828dffa51 100644 --- a/tools/syz-execprog/execprog.go +++ b/tools/syz-execprog/execprog.go @@ -55,7 +55,7 @@ func main() { if err != nil { Fatalf("failed to read log file: %v", err) } - entries = target.ParseLog(data) + entries = append(entries, target.ParseLog(data)...) } Logf(0, "parsed %v programs", len(entries)) if len(entries) == 0 { |
