We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
tensors
##Impact Uninitialized variables initialize to 0 automatically. No need to explicitly initialize it.
##Proof of concept https://github.com/pooltogether/aave-yield-source/blob/bc65c875f62235b7af55ede92231a495ba091a47/contracts/yield-source/ATokenYieldSource.sol#L141
##Recommended mitigation steps Replace with: uint256 shares;
uint256 shares;
The text was updated successfully, but these errors were encountered:
tensors issue #101
c39bb55
PR: pooltogether/aave-yield-source#16
Sorry, something went wrong.
PierrickGT
No branches or pull requests
Handle
tensors
Vulnerability details
##Impact
Uninitialized variables initialize to 0 automatically. No need to explicitly initialize it.
##Proof of concept
https://github.com/pooltogether/aave-yield-source/blob/bc65c875f62235b7af55ede92231a495ba091a47/contracts/yield-source/ATokenYieldSource.sol#L141
##Recommended mitigation steps
Replace with:
uint256 shares;
The text was updated successfully, but these errors were encountered: