smartbugs-curated/dataset/unchecked_low_level_calls/0x0cbe050f75bc8f8c2d6c0d249...

14 lines
228 B
Solidity
Raw Normal View History

/*
* @source: etherscan.io
* @author: -
* @vulnerable_at_lines: 12
*/
pragma solidity ^0.4.10;
contract Caller {
function callAddress(address a) {
// <yes> <report> UNCHECKED_LL_CALLS
a.call();
}
}