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:
Родитель
7122bbb0d1
Коммит
5ffd27fa8d
|
@ -132,6 +132,7 @@ static int read_rom(char *path)
|
|||
|
||||
rc = write(fd, "1", 2);
|
||||
if (rc <= 0) {
|
||||
close(fd);
|
||||
perror("write");
|
||||
return -1;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче