ChangeLog, debugfs.c:

debugfs.c (copy_file): Fixed signed vs unsigned bug which causes read
  	errors to not be noticed.
bitmap-optimize
Theodore Ts'o 2001-06-03 23:27:56 +00:00
parent 5a9c036bf3
commit b7846402ca
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2001-06-03 Theodore Tso <tytso@valinux.com>
* debugfs.c (copy_file): Fixed signed vs unsigned bug which causes
read errors to not be noticed.
2001-06-01 Theodore Tso <tytso@valinux.com>
* Makefile.in: Move include/asm/types.h.in to

View File

@ -1098,7 +1098,8 @@ static errcode_t copy_file(int fd, ext2_ino_t newfile)
{
ext2_file_t e2_file;
errcode_t retval;
unsigned int got, written;
int got;
unsigned int written;
char buf[8192];
char *ptr;