Fix buffer overflow if output iterator is std::back_insert_iterator and value is escaped (debug format) #540
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CIFuzz | |
on: [pull_request] | |
permissions: | |
contents: read | |
jobs: | |
Fuzzing: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Build Fuzzers | |
id: build | |
uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@061583ebb5a96653e42feb3a97ee513eedc18078 # master | |
with: | |
oss-fuzz-project-name: 'fmt' | |
dry-run: false | |
language: c++ | |
- name: Run Fuzzers | |
uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@061583ebb5a96653e42feb3a97ee513eedc18078 # master | |
with: | |
oss-fuzz-project-name: 'fmt' | |
fuzz-seconds: 300 | |
dry-run: false | |
language: c++ | |
- name: Upload Crash | |
uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0 | |
if: failure() && steps.build.outcome == 'success' | |
with: | |
name: artifacts | |
path: ./out/artifacts |