From: Richard Jones Date: Sat, 22 Aug 2009 09:40:42 +0000 (+0100) Subject: Add waitpid along guestfs_close path (RHBZ#518747). X-Git-Tag: 1.0.69~38 X-Git-Url: http://git.annexia.org/?a=commitdiff_plain;h=0abb1ec2b3f0e1f482f93b1c8b3d2ef59bc0321e;p=libguestfs.git Add waitpid along guestfs_close path (RHBZ#518747). --- diff --git a/src/guestfs.c b/src/guestfs.c index 04bd4e8..204125b 100644 --- a/src/guestfs.c +++ b/src/guestfs.c @@ -348,6 +348,10 @@ guestfs_close (guestfs_h *g) g->fd[1] = -1; g->sock = -1; + /* Wait for subprocess(es) to exit. */ + waitpid (g->pid, NULL, 0); + if (g->recoverypid > 0) waitpid (g->recoverypid, NULL, 0); + /* Remove tmpfiles. */ if (g->tmpdir) { snprintf (filename, sizeof filename, "%s/sock", g->tmpdir);