mirror of
https://github.com/torvalds/linux.git
synced 2024-12-26 21:02:19 +00:00
doc: aliasing-test: close fd on write error
If write fails, remember to close(fd) before returning. Signed-off-by: Jesper Juhl <jj@chaosbits.net> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
This commit is contained in:
parent
7122bbb0d1
commit
5ffd27fa8d
@ -132,6 +132,7 @@ static int read_rom(char *path)
|
|||||||
|
|
||||||
rc = write(fd, "1", 2);
|
rc = write(fd, "1", 2);
|
||||||
if (rc <= 0) {
|
if (rc <= 0) {
|
||||||
|
close(fd);
|
||||||
perror("write");
|
perror("write");
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user