Browse Source

Merge branch 'master' of git://git.denx.de/u-boot-ubi

Tom Rini 8 years ago
parent
commit
f83845829a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      cmd/ubi.c

+ 1 - 1
cmd/ubi.c

@@ -308,7 +308,7 @@ int ubi_volume_begin_write(char *volume, void *buf, size_t size,
 		return ENODEV;
 		return ENODEV;
 
 
 	rsvd_bytes = vol->reserved_pebs * (ubi->leb_size - vol->data_pad);
 	rsvd_bytes = vol->reserved_pebs * (ubi->leb_size - vol->data_pad);
-	if (size < 0 || size > rsvd_bytes) {
+	if (size > rsvd_bytes) {
 		printf("size > volume size! Aborting!\n");
 		printf("size > volume size! Aborting!\n");
 		return EINVAL;
 		return EINVAL;
 	}
 	}