coverity 172

remove a dead code condition


svn path=/trunk/; revision=18565
This commit is contained in:
Ronnie Sahlberg 2006-06-23 23:44:17 +00:00
parent d65312a960
commit 2258dfd5a9
1 changed files with 1 additions and 1 deletions

View File

@ -402,7 +402,7 @@ static gboolean dissect_jxta_TCP_heur(tvbuff_t * tvb, packet_info * pinfo, proto
save_desegment_offset = pinfo->desegment_offset;
save_desegment_len = pinfo->desegment_len;
ret = dissect_jxta_stream(tvb, pinfo, tree);
if (ret <= 0) {
if (ret < 0) {
/*
* A heuristic dissector for a TCP-based protocol can reject
* a packet, or it can request that more data be provided.