| 275 | } |
| 276 | |
| 277 | const char *get_tempfile_path(struct tempfile *tempfile) |
| 278 | { |
| 279 | if (!is_tempfile_active(tempfile)) |
| 280 | BUG("get_tempfile_path() called for inactive object"); |
| 281 | return tempfile->filename.buf; |
| 282 | } |
| 283 | |
| 284 | int get_tempfile_fd(struct tempfile *tempfile) |
| 285 | { |
no test coverage detected