Skip to content

Add public function for freeing list when the entire struct hasn't been parsed #195

Add public function for freeing list when the entire struct hasn't been parsed

Add public function for freeing list when the entire struct hasn't been parsed #195

Workflow file for this run

name: "CodeQL"
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: true
on:
push:
branches: trunk
paths:
- '**.c'
- '**.h'
- '**/codeql-analysis.yml'
pull_request:
branches: trunk
paths:
- '**.c'
- '**.h'
- '**/codeql-analysis.yml'
# schedule:
# - cron: '0 6 * * 6'
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
# We must fetch at least the immediate parents so that if this is a
# pull request then we can checkout the head.
fetch-depth: 2
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: 'cpp'
- run: sudo apt-get install -y meson
- run: |
meson setup _build
ninja -C _build
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3