libusermode: fix base_addr read in map_view_of_section_ret_cb #1378
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: cpplint | |
on: | |
pull_request: | |
branches: [ main ] | |
permissions: | |
contents: read | |
jobs: | |
cpplint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: install dependencies | |
run: | | |
pip3 install cpplint | |
- name: cpplint | |
run: | | |
export PATH=$PATH:~/.local/bin | |
cpplint \ | |
--filter=-whitespace,-legal,-runtime/int,-runtime/explicit,-build/header_guard,-build/include_subdir,-build/include_what_you_use,-build/include_order \ | |
--recursive \ | |
--verbose=5 \ | |
src/plugins/plugins.cpp \ | |
src/plugins/plugins_ex.cpp \ | |
src/plugins/output_format/* \ | |
src/libusermode/* \ | |
src/libhook/* |