diff options
author | Shan Wei <shanwei@cn.fujitsu.com> | 2011-02-19 16:57:26 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-02-20 14:10:15 -0500 |
commit | 59ed5aba9ca1c799e272b352d5d2d7fe12bd32e8 (patch) | |
tree | 87cc24c96233c6ea6e1a81cc314f9c2f1cf557af /net/sctp | |
parent | 089c34827e52346f0303d1e6a7b744c1f4da3095 (diff) |
sctp: fix compile warnings in sctp_tsnmap_num_gabs
net/sctp/tsnmap.c: In function ‘sctp_tsnmap_num_gabs’:
net/sctp/tsnmap.c:347: warning: ‘start’ may be used uninitialized in this function
net/sctp/tsnmap.c:347: warning: ‘end’ may be used uninitialized in this function
Signed-off-by: Shan Wei <shanwei@cn.fujitsu.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sctp')
-rw-r--r-- | net/sctp/tsnmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sctp/tsnmap.c b/net/sctp/tsnmap.c index 747d5412c463..f1e40cebc981 100644 --- a/net/sctp/tsnmap.c +++ b/net/sctp/tsnmap.c | |||
@@ -344,7 +344,7 @@ __u16 sctp_tsnmap_num_gabs(struct sctp_tsnmap *map, | |||
344 | 344 | ||
345 | /* Refresh the gap ack information. */ | 345 | /* Refresh the gap ack information. */ |
346 | if (sctp_tsnmap_has_gap(map)) { | 346 | if (sctp_tsnmap_has_gap(map)) { |
347 | __u16 start, end; | 347 | __u16 start = 0, end = 0; |
348 | sctp_tsnmap_iter_init(map, &iter); | 348 | sctp_tsnmap_iter_init(map, &iter); |
349 | while (sctp_tsnmap_next_gap_ack(map, &iter, | 349 | while (sctp_tsnmap_next_gap_ack(map, &iter, |
350 | &start, | 350 | &start, |