Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Explicitly initialize two local variables to 0 (sonic-net#3046)
GCC 12 (in Debian Bookworm) claims that on armhf targets, the `lower` local variable in `Orch::generateIdListFromMap` could potentially be used uninitialized a few lines later when it's being converted to a string. I don't see how that could be the case here, since if the string is being printed, the only code path where this is possible requires `lower` to have been set to something. To silence the warning, set both `lower` and `upper` to 0 explicitly.
- Loading branch information