From: VMware, Inc <> Date: Thu, 2 Aug 2012 05:21:50 +0000 (-0700) Subject: lib/stubs: fix infinite loop in stub-user-msg.c X-Git-Tag: 2012.10.14-874563~95 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=70db7cffba22d0dc3a4041892f7e4665ce71a945;p=thirdparty%2Fopen-vm-tools.git lib/stubs: fix infinite loop in stub-user-msg.c Signed-off-by: Dmitry Torokhov --- diff --git a/open-vm-tools/lib/stubs/stub-user-msg.c b/open-vm-tools/lib/stubs/stub-user-msg.c index 539265ccf..78f4de7b9 100644 --- a/open-vm-tools/lib/stubs/stub-user-msg.c +++ b/open-vm-tools/lib/stubs/stub-user-msg.c @@ -36,6 +36,7 @@ Msg_AppendMsgList(const MsgList *msgs) { while (msgs != NULL) { Warning("%s [STUB]: %s\n", __FUNCTION__, msgs->id); + msgs = msgs->next; } }