Coverity: Check guestfs_inspect_get_product_name() != NULL before using.
authorRichard W.M. Jones <rjones@redhat.com>
Tue, 23 Aug 2011 15:47:18 +0000 (16:47 +0100)
committerRichard W.M. Jones <rjones@redhat.com>
Sun, 28 Aug 2011 08:18:57 +0000 (09:18 +0100)
(cherry picked from commit fa44536b0ff12102c72ae0337e51d272f0fc2353)

fish/inspect.c

index 5e1948c..07af818 100644 (file)
@@ -142,7 +142,7 @@ void
 print_inspect_prompt (void)
 {
   char *name = guestfs_inspect_get_product_name (g, root);
-  if (STRNEQ (name, "unknown"))
+  if (name && STRNEQ (name, "unknown"))
     printf (_("Operating system: %s\n"), name);
   free (name);