diff options
author | Markus Armbruster <armbru@redhat.com> | 2013-01-10 14:10:22 +0100 |
---|---|---|
committer | Luiz Capitulino <lcapitulino@redhat.com> | 2013-01-10 14:47:56 -0200 |
commit | 517823449ebe8e3758b86c441cc74968b68e6491 (patch) | |
tree | f5308c968185dfc4d0c0f962313345925b352275 /monitor.c | |
parent | 6ad53bdf5830bfc30221aee8d4ced9a9eaf8fe03 (diff) |
monitor: assert monitor_puts()'s loop invariant
Chiefly to hush up Coverity.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Diffstat (limited to 'monitor.c')
-rw-r--r-- | monitor.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -270,6 +270,7 @@ static void monitor_puts(Monitor *mon, const char *str) char c; for(;;) { + assert(mon->outbuf_index < sizeof(mon->outbuf) - 1); c = *str++; if (c == '\0') break; |