1
0
mirror of git://projects.qi-hardware.com/ben-blinkenlights.git synced 2024-11-23 20:25:19 +02:00

libubb/physmem.c (physmem_xlat): don't close the (supposedly) cached fd

This commit is contained in:
Werner Almesberger 2013-01-26 21:09:19 -03:00
parent 13f34170de
commit 96ae3319c5

View File

@ -148,7 +148,6 @@ int physmem_xlat(const void *v, size_t len,
while (len) {
if (n >= vec_len) {
close(fd);
errno = EOVERFLOW;
return -1;
}
@ -163,7 +162,6 @@ int physmem_xlat(const void *v, size_t len,
vaddr += this_len;
len -= this_len;
}
close(fd);
return n;
}