pidgin/pidgin

Coverity: missing break in tcl plugin

2014-05-17, Tomasz Wasilczyk
136469c94e3c
Parents bffbd724134d
Children f06dab8296be
Coverity: missing break in tcl plugin
--- a/libpurple/plugins/tcl/tcl_cmds.c Sat May 17 12:05:39 2014 +0200
+++ b/libpurple/plugins/tcl/tcl_cmds.c Sat May 17 12:40:29 2014 +0200
@@ -875,6 +875,7 @@
break;
}
purple_conversation_write_message(convo, from, what, flags, time(NULL));
+ break;
case CMD_CONV_NAME:
if (objc != 3) {
Tcl_WrongNumArgs(interp, 2, objv, "conversation");