aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/tcp_graph.c
diff options
context:
space:
mode:
authorstig <stig@f5534014-38df-0310-8fa8-9805f1628bb7>2011-03-26 15:20:37 +0000
committerstig <stig@f5534014-38df-0310-8fa8-9805f1628bb7>2011-03-26 15:20:37 +0000
commit3b097ad8e625dd5c9a6d4f0ee4eef0873a5ba971 (patch)
treed8f4c28f43dce840c0798d2c490065b20fe99d32 /gtk/tcp_graph.c
parent5c29a616d6a7c2665596bee83303ddc470eb703a (diff)
Added a missing break in graph_select_segment.
Coverity 482. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36349 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'gtk/tcp_graph.c')
-rw-r--r--gtk/tcp_graph.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/gtk/tcp_graph.c b/gtk/tcp_graph.c
index b61165b5a8..18513d1dee 100644
--- a/gtk/tcp_graph.c
+++ b/gtk/tcp_graph.c
@@ -2518,6 +2518,7 @@ static void graph_select_segment (struct graph *g, int x, int y)
if (line_detect_collision (e, x, y)) {
num = e->parent->num;
}
+ break;
case ELMT_ARC:
if (arc_detect_collision (e, x, y)) {
num = e->parent->num;