Closed code423n4 closed 1 year ago
Unsatisfactory for not filtering false positives (Eg. the 2nd issue's PointerLibraries reference)
/// @dev Reads the uint8 at `cdPtr` in calldata.
function readUint8(
CalldataPointer cdPtr
) internal pure returns (uint8 value) {
assembly {
value := calldataload(cdPtr)
}
}
It's the purpose of the function to return uint8
.
HickupHH3 marked the issue as grade-c
See the markdown file with the details of this report here.