1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

Fix Steam input "crc" errors, and some other Coverity reports of uninitialized scalar variable

- Fixes #88630.
- Fixes #92578.
This commit is contained in:
Rémi Verschelde
2024-05-02 13:12:21 +02:00
parent a4f2ea91a1
commit 62120c7841
5 changed files with 25 additions and 25 deletions

View File

@@ -236,7 +236,7 @@ struct ReferenceContext {
/**
* Include the declaration of the current symbol.
*/
bool includeDeclaration;
bool includeDeclaration = false;
};
struct ReferenceParams : TextDocumentPositionParams {