Explorar o código

mtd: fix erase handling with partition offset on write

When a partition offset is given, it is used in an lseek call, which
affects write, but not erase. Add it to the offset for erase calls as
well

Signed-off-by: Felix Fietkau <[email protected]>
Felix Fietkau %!s(int64=7) %!d(string=hai) anos
pai
achega
d92ec071b2
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      package/system/mtd/src/mtd.c

+ 1 - 1
package/system/mtd/src/mtd.c

@@ -638,7 +638,7 @@ resume:
 					continue;
 				}
 
-				if (mtd_erase_block(fd, e) < 0) {
+				if (mtd_erase_block(fd, e + part_offset) < 0) {
 					if (next) {
 						if (w < e) {
 							write(fd, buf + offset, e - w);