[PATCH spice-common 3/4] Check for messages with duplicate names inside a channel

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Make sure there are not 2 messages with the same name in the
same channel.

Signed-off-by: Frediano Ziglio <fziglio@xxxxxxxxxx>
---
 python_modules/ptypes.py | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/python_modules/ptypes.py b/python_modules/ptypes.py
index ef580aa..664dd1d 100644
--- a/python_modules/ptypes.py
+++ b/python_modules/ptypes.py
@@ -1055,6 +1055,9 @@ class ChannelType(Type):
                     m.value = info.count
                 info.count = m.value + 1
                 info.messages.append(m)
+                if m.name in info.messages_byname:
+                    raise Exception("Duplicated message name between %s and %s in channel %s" % (
+                        info.messages_byname[m.name].name, m.name, self.name))
                 info.messages_byname[m.name] = m
 
         self.server_messages = server_info.messages
-- 
2.17.0

_______________________________________________
Spice-devel mailing list
Spice-devel@xxxxxxxxxxxxxxxxxxxxx
https://lists.freedesktop.org/mailman/listinfo/spice-devel




[Index of Archives]     [Linux ARM Kernel]     [Linux ARM]     [Linux Omap]     [Fedora ARM]     [IETF Annouce]     [Security]     [Bugtraq]     [Linux]     [Linux OMAP]     [Linux MIPS]     [ECOS]     [Asterisk Internet PBX]     [Linux API]     [Monitors]