qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH v4 08/10] tests/bios-tables-test: check the value re


From: zhanghailiang
Subject: [Qemu-devel] [PATCH v4 08/10] tests/bios-tables-test: check the value returned by fopen()
Date: Fri, 8 Aug 2014 17:21:10 +0800

The function fopen() may fail, so check its return value.

Signed-off-by: zhanghailiang <address@hidden>
Signed-off-by: Li Liu <address@hidden>
---
 tests/bios-tables-test.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/tests/bios-tables-test.c b/tests/bios-tables-test.c
index 045eb27..6a357c0 100644
--- a/tests/bios-tables-test.c
+++ b/tests/bios-tables-test.c
@@ -790,6 +790,8 @@ int main(int argc, char *argv[])
     const char *arch = qtest_get_arch();
     FILE *f = fopen(disk, "w");
     int ret;
+
+    g_assert(f != NULL);
     fwrite(boot_sector, 1, sizeof boot_sector, f);
     fclose(f);
 
-- 
1.7.12.4





reply via email to

[Prev in Thread] Current Thread [Next in Thread]