Avoid io_tell whose return value is not used

In this case, flush_before_seek is enough.
This change will suppress a warning of Coverity Scan.
This commit is contained in:
Yusuke Endoh 2019-07-14 13:49:39 +09:00
Родитель 18603e9046
Коммит 315d3adf0f
1 изменённых файлов: 1 добавлений и 1 удалений

2
io.c
Просмотреть файл

@ -7275,7 +7275,7 @@ io_reopen(VALUE io, VALUE nfile)
rb_sys_fail(0); rb_sys_fail(0);
} }
else { else {
io_tell(fptr); flush_before_seek(fptr);
} }
if (orig->mode & FMODE_READABLE) { if (orig->mode & FMODE_READABLE) {
pos = io_tell(orig); pos = io_tell(orig);