aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-megaco.c
diff options
context:
space:
mode:
authorrbalint <rbalint@f5534014-38df-0310-8fa8-9805f1628bb7>2008-12-30 11:22:49 +0000
committerrbalint <rbalint@f5534014-38df-0310-8fa8-9805f1628bb7>2008-12-30 11:22:49 +0000
commit361b3793ba012d5879cef1f640fd0ac469b02741 (patch)
tree671b4ab02485cc383b5fd5eca58ee7cf4c3d0f15 /epan/dissectors/packet-megaco.c
parent48243b275854b1d7a07ad5ea44016bc275350f12 (diff)
Do not dissect descriptors twice after topology descriptor.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27130 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-megaco.c')
-rw-r--r--epan/dissectors/packet-megaco.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-megaco.c b/epan/dissectors/packet-megaco.c
index 9d74674662..f4aed04737 100644
--- a/epan/dissectors/packet-megaco.c
+++ b/epan/dissectors/packet-megaco.c
@@ -912,9 +912,9 @@ nextcontext:
} else {
/* Try to find the first char of the command */
- tvb_command_start_offset = megaco_tvb_skip_wsp_return(tvb, tvb_command_start_offset + 1);
+ tvb_command_start_offset = megaco_tvb_skip_wsp(tvb, tvb_command_start_offset + 1);
tvb_next_offset = tvb_find_guint8(tvb, tvb_command_start_offset, tvb_len, '{');
-
+ continue;
}
}