View | Details | Raw Unified | Return to issue 20459
Collapse All | Expand All

(-)setup2/mow/source/loader/loader.c (+5 lines)
Lines 2195-2200 BOOL __getFullPath(const char* pszFilena Link Here
2195
            return (FALSE);
2195
            return (FALSE);
2196
        }
2196
        }
2197
2197
2198
#if 0
2199
/* This check is only enough for an NFS mount.  A bind mount
2200
has the same device numbers even though the inodes do not
2201
match */
2198
        if (status.st_dev == parent.st_dev)
2202
        if (status.st_dev == parent.st_dev)
2199
        {
2203
        {
2200
            do
2204
            do
Lines 2211-2216 BOOL __getFullPath(const char* pszFilena Link Here
2211
            while (entry->d_ino != status.st_ino);
2215
            while (entry->d_ino != status.st_ino);
2212
        }
2216
        }
2213
        else
2217
        else
2218
#endif
2214
        {
2219
        {
2215
            /*
2220
            /*
2216
             * if this point is a mount point we have to check
2221
             * if this point is a mount point we have to check

Return to issue 20459