You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
structFTWlev= {0};
structhistorynew;
new.chain=h;
new.dev=st.st_dev;
new.ino=st.st_ino;
new.level=h ? h->level+1 : 0;
/* TODO not recursive, so refactor this to make lev be * function-scope and increment/decerment lev.level as * directories are entered/exited; it will also know to * exit when fd_limit is exceeded */
(void)fd_limit;
lev.level=new.level;
lev.base=wcslen(dir->path);
/* skip directories named '.' and '..' */if (thisname[0] ==L'.'&& (!thisname[1]
|| (thisname[1] ==L'.'&& !thisname[2]
)
)
)
continue;
wstat(wpath, &st);
you are referencing st.st_dev and st.st_ino before you call wstat.
The text was updated successfully, but these errors were encountered:
you are referencing st.st_dev and st.st_ino before you call wstat.
The text was updated successfully, but these errors were encountered: