From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:39608) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XJSjF-0001p0-Fe for qemu-devel@nongnu.org; Mon, 18 Aug 2014 15:36:33 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XJSjB-0005Vp-5r for qemu-devel@nongnu.org; Mon, 18 Aug 2014 15:36:29 -0400 Date: Mon, 18 Aug 2014 21:36:41 +0200 From: "Michael S. Tsirkin" Message-ID: <20140818193641.GB29446@redhat.com> References: <1408348473-10104-1-git-send-email-zhang.zhanghailiang@huawei.com> <53F1E5A4.9060000@msgid.tls.msk.ru> <20140818134421.GA28795@redhat.com> <53F20C82.7050506@msgid.tls.msk.ru> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline In-Reply-To: <53F20C82.7050506@msgid.tls.msk.ru> Content-Transfer-Encoding: quoted-printable Subject: Re: [Qemu-devel] [Qemu-trivial] [PATCH v7] tests/bios-tables-test: check the value returned by fopen() List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Michael Tokarev Cc: zhanghailiang , marcel.a@redhat.com, qemu-trivial@nongnu.org, Li Liu , luonengjun@huawei.com, qemu-devel@nongnu.org, peter.huangpeng@huawei.com On Mon, Aug 18, 2014 at 06:24:02PM +0400, Michael Tokarev wrote: > 18.08.2014 17:44, Michael S. Tsirkin wrote: > > On Mon, Aug 18, 2014 at 03:38:12PM +0400, Michael Tokarev wrote: > >> 18.08.2014 11:54, zhanghailiang wrote: > >>> The function fopen() may fail, so check its return value. > >>> > >>> Signed-off-by: zhanghailiang > >>> Signed-off-by: Li Liu > >>> Reviewed-by: Alex Benn=E9e > >>> --- > >>> tests/bios-tables-test.c | 5 +++++ > >>> 1 file changed, 5 insertions(+) > >>> > >>> diff --git a/tests/bios-tables-test.c b/tests/bios-tables-test.c > >>> index 045eb27..feb3b58 100644 > >>> --- a/tests/bios-tables-test.c > >>> +++ b/tests/bios-tables-test.c > >>> @@ -790,6 +790,11 @@ int main(int argc, char *argv[]) > >>> const char *arch =3D qtest_get_arch(); > >>> FILE *f =3D fopen(disk, "w"); > >>> int ret; > >>> + > >>> + if (!f) { > >>> + fprintf(stderr, "Couldn't open \"%s\": %s", disk, strerror= (errno)); > >>> + return -1; > >>> + } > >> > >> Applied to -trivial, with s/-1/1/. No need to resend it again. > >> > >> Thanks, > >> > >> /mjt > >> > >>> fwrite(boot_sector, 1, sizeof boot_sector, f); > >>> fclose(f); > >=20 > > This doesn't seem appropriate to trivial tree: > > there were some objections from Marcel, I'd like to > > see them addressed. >=20 > I see the objections as addressed, don't you? >=20 > /mjt Does test fail if this path is triggered?