()
| 259 | } |
| 260 | |
| 261 | push_get_errno() { |
| 262 | this.push_gadget('pop rdi; ret'); |
| 263 | this.push_value(this.errno_addr); |
| 264 | |
| 265 | this.push_call(this.get_gadget('__error')); |
| 266 | |
| 267 | this.push_gadget('mov rax, qword ptr [rax]; ret'); |
| 268 | this.push_gadget('mov dword ptr [rdi], eax; ret'); |
| 269 | } |
| 270 | |
| 271 | check_stale() { |
| 272 | if (this.is_stale) { |
no test coverage detected