From: Richard Jones Date: Sun, 26 Apr 2009 08:52:42 +0000 (+0100) Subject: More checks. X-Git-Tag: 1.0.13~4 X-Git-Url: http://git.annexia.org/?a=commitdiff_plain;ds=sidebyside;h=ab76c39d696c7f0a0071bfbac0e36af69594e68c;p=libguestfs.git More checks. --- diff --git a/src/guestfs.c b/src/guestfs.c index 05fb113..8836a7e 100644 --- a/src/guestfs.c +++ b/src/guestfs.c @@ -1306,6 +1306,7 @@ sock_read_event (struct guestfs_main_loop *ml, guestfs_h *g, void *data, if (g->msg_in_size-4 < len) return; /* Need more of this message. */ /* Got the full message, begin processing it. */ +#if 0 if (g->verbose) { int i, j; @@ -1326,6 +1327,7 @@ sock_read_event (struct guestfs_main_loop *ml, guestfs_h *g, void *data, printf ("|\n"); } } +#endif /* Not in the expected state. */ if (g->state != BUSY) @@ -1334,6 +1336,9 @@ sock_read_event (struct guestfs_main_loop *ml, guestfs_h *g, void *data, /* Push the message up to the higher layer. */ if (g->reply_cb) g->reply_cb (g, g->reply_cb_data, &xdr); + else + /* This message (probably) should never be printed. */ + fprintf (stderr, "libguesfs: sock_read_event: !!! dropped message !!!\n"); g->msg_in_size -= len + 4; memmove (g->msg_in, g->msg_in+len+4, g->msg_in_size);