ut-osa / strata

Strata: A Cross Media File System
69 stars 42 forks source link

bug report dealing with path! #15

Open zbhhbzzbh opened 6 years ago

zbhhbzzbh commented 6 years ago

There is a bug dealing with path name . when trying to recongnize parent path name and file name ,there is at libfs/src/global/util.h while (path == '0') { path--; len--; } while actually it should be while (path == '\0') { path--; len--; } am i right ?