]> git.ipfire.org Git - thirdparty/open-vm-tools.git/commitdiff
lib/stubs: fix infinite loop in stub-user-msg.c
authorVMware, Inc <>
Thu, 2 Aug 2012 05:21:50 +0000 (22:21 -0700)
committerDmitry Torokhov <dtor@vmware.com>
Thu, 2 Aug 2012 18:01:11 +0000 (11:01 -0700)
Signed-off-by: Dmitry Torokhov <dtor@vmware.com>
open-vm-tools/lib/stubs/stub-user-msg.c

index 539265ccff399f905b146d079c971a639b32fbde..78f4de7b997d4ea4003e1a90d867d71814ed8b34 100644 (file)
@@ -36,6 +36,7 @@ Msg_AppendMsgList(const MsgList *msgs)
 {
    while (msgs != NULL) {
       Warning("%s [STUB]: %s\n", __FUNCTION__, msgs->id);
+      msgs = msgs->next;
    }
 }