Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix a warning by making a pointer nullptr. (#375)
When building on Ubuntu 22.04 in Release mode, gcc complains that: ‘stact’ may be used uninitialized in this function [-Wmaybe-uninitialized] 2295 I think this is probably a false positive; in any situations where stact was not set, we would have gotten out before this. Regardless, just set stact to nullptr, which quiets the warning and should have no deleterious effects. Signed-off-by: Chris Lalancette <[email protected]>
- Loading branch information