| 342 | { |
| 343 | FileAbs* file_abs = reinterpret_cast<FileAbs*>(user_data); |
| 344 | struct stat st; |
| 345 | int ret; |
| 346 | if (!file_abs->fp || (ret = stat(file_abs->path, &st)) == -1 || (st.st_ino != file_abs->st.st_ino)) { |
| 347 | file_abs->is_reopening = true; |
no outgoing calls
no test coverage detected