All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] libxl: do not call exit() in libxl_device_vtpm_list
@ 2013-05-08  3:47 Marek Marczykowski
  2013-05-08  5:28 ` Jim Fehlig
  2013-05-08  9:35 ` Ian Campbell
  0 siblings, 2 replies; 4+ messages in thread
From: Marek Marczykowski @ 2013-05-08  3:47 UTC (permalink / raw)
  To: xen-devel; +Cc: Marek Marczykowski, Ian Campbell

Signal error with NULL return value, do not terminate the whole process.

Signed-off-by: Marek Marczykowski <marmarek@invisiblethingslab.com>
---
 tools/libxl/libxl.c | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/tools/libxl/libxl.c b/tools/libxl/libxl.c
index 03fd35a..5b9a3df 100644
--- a/tools/libxl/libxl.c
+++ b/tools/libxl/libxl.c
@@ -1860,11 +1860,12 @@ libxl_device_vtpm *libxl_device_vtpm_list(libxl_ctx *ctx, uint32_t domid, int *n
           vtpm->backend_domid = atoi(tmp);
 
           tmp = libxl__xs_read(gc, XBT_NULL, GCSPRINTF("%s/uuid", be_path));
-          if(tmp) {
-             if(libxl_uuid_from_string(&(vtpm->uuid), tmp)) {
-                LOG(ERROR, "%s/uuid is a malformed uuid?? (%s) Probably a bug!!\n", be_path, tmp);
-                exit(1);
-             }
+          if (tmp) {
+              if(libxl_uuid_from_string(&(vtpm->uuid), tmp)) {
+                  LOG(ERROR, "%s/uuid is a malformed uuid?? (%s) Probably a bug!!\n", be_path, tmp);
+                  free(vtpms);
+                  return NULL;
+              }
           }
        }
     }
-- 
1.8.1.4

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2013-07-04 10:41 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-05-08  3:47 [PATCH] libxl: do not call exit() in libxl_device_vtpm_list Marek Marczykowski
2013-05-08  5:28 ` Jim Fehlig
2013-05-08  9:35 ` Ian Campbell
2013-07-04 10:41   ` Ian Campbell

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.