Update docs/codeql/codeql-language-guides/advanced-dataflow-scenarios-cpp.rst

Co-authored-by: Felicity Chapman <felicitymay@github.com>
This commit is contained in:
Mathias Vorreiter Pedersen 2023-10-18 14:11:24 +02:00 коммит произвёл GitHub
Родитель 9a91145d7e
Коммит d4cbb8cb22
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -93,7 +93,7 @@ will catch most things such as
free(b);
}
This is simple to match because we see:
This data flow is simple to match because the CodeQL database contains the information to see:
1. User input starts at ``user_input()`` and flows into ``fill_structure``.
2. The data is written to the object ``b`` with access path ``[a, p]``.
3. The object ``b`` flows out of ``fill_structure`` and into ``process_structure``.