Commit f7d183f0 authored by Diego Biurrun's avatar Diego Biurrun

libxvid: Check return value of write() call

libavcodec/libxvid_rc.c:106:9: warning: ignoring return value of ‘write’, declared with attribute warn_unused_result [-Wunused-result]
parent e5e8a26d
...@@ -87,7 +87,10 @@ av_cold int ff_xvid_rate_control_init(MpegEncContext *s) ...@@ -87,7 +87,10 @@ av_cold int ff_xvid_rate_control_init(MpegEncContext *s)
(rce->i_tex_bits + rce->p_tex_bits + rce->misc_bits + 7) / 8, (rce->i_tex_bits + rce->p_tex_bits + rce->misc_bits + 7) / 8,
(rce->header_bits + rce->mv_bits + 7) / 8); (rce->header_bits + rce->mv_bits + 7) / 8);
write(fd, tmp, strlen(tmp)); if (strlen(tmp) > write(fd, tmp, strlen(tmp))) {
av_log(s, AV_LOG_ERROR, "Cannot write to temporary pass2 file.\n");
return AVERROR(EIO);
}
} }
close(fd); close(fd);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment