()
| 170 | } |
| 171 | |
| 172 | push_get_errno() { |
| 173 | this.push_gadget("pop rdi; ret"); |
| 174 | this.push_value(this.errno_addr); |
| 175 | |
| 176 | this.push_call(this.get_gadget("__error")); |
| 177 | |
| 178 | this.push_gadget("mov rax, qword ptr [rax]; ret"); |
| 179 | this.push_gadget("mov dword ptr [rdi], eax; ret"); |
| 180 | } |
| 181 | |
| 182 | push_clear_errno() { |
| 183 | this.push_call(this.get_gadget("__error")); |
nothing calls this directly
no test coverage detected