We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f764d1e commit c3c037bCopy full SHA for c3c037b
compiler-rt/lib/profile/InstrProfilingUtil.c
@@ -298,8 +298,9 @@ static int is_local_filesystem(int Fd) {
298
_Static_assert(sizeof(Vfs.f_fsid) == sizeof(Vp->vmt_fsid),
299
"fsid length mismatch");
300
if (memcmp(&Vfs.f_fsid, &Vp->vmt_fsid, sizeof Vfs.f_fsid) == 0) {
301
+ int Answer = (Vp->vmt_flags & MNT_REMOTE) == 0;
302
free(Buf);
- return (Vp->vmt_flags & MNT_REMOTE) == 0;
303
+ return Answer;
304
}
305
CurObjPtr += Vp->vmt_length;
306
0 commit comments