Fix logic bug. I'm sure this was something Coverity found and I fixed but forgot to commit it. Unfortunately Coverity has upgraded to Scan 5.5 and things are different now so I can't cross reference which CID this was anymore.

svn path=/trunk/; revision=42395
This commit is contained in:
Chris Maynard 2012-05-03 14:00:56 +00:00
parent 33646d3411
commit 76f582c58d
1 changed files with 3 additions and 3 deletions

View File

@ -3944,7 +3944,7 @@ decode_sysex_common_nrt_sd_ext( tvbuff_t *tvb, packet_info *pinfo _U_, proto_tre
data_len -= 2; */
consumed += 2;
};
}
return consumed;
}
@ -3971,7 +3971,7 @@ decode_sysex_common_nrt_gi( tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *t
/* This is the only sub-command that we know that we can decode,
* the Identity Request has already been decoded up to this point. */
if ( sub_id != RTP_MIDI_SYSEX_COMMON_NRT_GI_IDENTITY_REQUEST ) {
if ( sub_id == RTP_MIDI_SYSEX_COMMON_NRT_GI_IDENTITY_REQUEST ) {
/* nothing more to do... */
@ -4026,7 +4026,7 @@ decode_sysex_common_nrt_gi( tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *t
offset +=4 ;
data_len -= 4;*/
consumed += 4;
};
}
return consumed;
}