Bugfix from Irene Ruengeler to improve the TSN plot for SCTP

when large gap reports are present.
 


git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@34823 f5534014-38df-0310-8fa8-9805f1628bb7
This commit is contained in:
tuexen 2010-11-09 16:29:15 +00:00
parent 8f85773aa1
commit 9bfb6dd7ec
1 changed files with 2 additions and 2 deletions

View File

@ -312,9 +312,9 @@ draw_nr_sack_graph(struct sctp_udata *u_data)
{
tsn_t *sack;
GList *list=NULL, *tlist;
guint16 gap_start=0, gap_end=0, i, j, numberOf_gaps, numberOf_nr_gaps;
guint16 gap_start=0, gap_end=0, i, numberOf_gaps, numberOf_nr_gaps;
guint8 type;
guint32 tsnumber;
guint32 tsnumber, j;
gint xvalue, yvalue;
GdkColor red_color = {0, 65535, 0, 0};
GdkColor blue_color = {0, 0, 0, 65535};