resolved: avoid passing unitialized variable
The issue was introduced in the refactoring in 775ae354. We would pass an initialized value to a helper function. We would only *use* it if it was initialized. But the mere passing of an unitialized variable is UB, so let's not do that. This silences a gcc warning.
Loading
Please register or sign in to comment