diff --git a/[refs] b/[refs] index 9bc5872911fe..79a18c354161 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 720a845911097cea1394fe7abb2c9efa76e32715 +refs/heads/master: 82a25b5670eef736a20613f8b93fe55ecb5ca4bc diff --git a/trunk/fs/umsdos/notes b/trunk/fs/umsdos/notes deleted file mode 100644 index 3c47d1f4fc47..000000000000 --- a/trunk/fs/umsdos/notes +++ /dev/null @@ -1,17 +0,0 @@ -This file contain idea and things I don't want to forget - -Possible bug in fs/read_write.c -Function sys_readdir() - - There is a call the verify_area that does not take in account - the count parameter. I guess it should read - - error = verify_area(VERIFY_WRITE, dirent, count*sizeof (*dirent)); - - instead of - - error = verify_area(VERIFY_WRITE, dirent, sizeof (*dirent)); - - Of course, now , count is always 1 - -