diff options
author | Brian Haley <brian.haley@hp.com> | 2007-01-23 22:32:23 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2007-01-23 22:32:23 -0800 |
commit | 1e5c11fc89ef6663aaa14db1e9e27477f07c24e0 (patch) | |
tree | 280acdcec44762c5eb26f10758f8a8c27baedab0 /net/sctp | |
parent | 6fd8bb881509c6bdc3469b3ed16ec25a3b7cad0e (diff) | |
download | kernel_samsung_espresso10-1e5c11fc89ef6663aaa14db1e9e27477f07c24e0.zip kernel_samsung_espresso10-1e5c11fc89ef6663aaa14db1e9e27477f07c24e0.tar.gz kernel_samsung_espresso10-1e5c11fc89ef6663aaa14db1e9e27477f07c24e0.tar.bz2 |
[SCTP]: Fix compiler warning.
> --- a/net/sctp/sm_statefuns.c
> +++ b/net/sctp/sm_statefuns.c
> @@ -462,24 +461,6 @@ sctp_disposition_t sctp_sf_do_5_1C_ack(const struct sctp_endpoint *ep,
> - if (!init_tag) {
> - struct sctp_chunk *reply = sctp_make_abort(asoc, chunk, 0);
> - if (!reply)
> - goto nomem;
This introduced a compiler warning, easily fixed.
Signed-off-by: Brian Haley <brian.haley@hp.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sctp')
-rw-r--r-- | net/sctp/sm_statefuns.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/net/sctp/sm_statefuns.c b/net/sctp/sm_statefuns.c index fce1f60..fbbc9e6 100644 --- a/net/sctp/sm_statefuns.c +++ b/net/sctp/sm_statefuns.c @@ -531,9 +531,6 @@ sctp_disposition_t sctp_sf_do_5_1C_ack(const struct sctp_endpoint *ep, SCTP_CHUNK(err_chunk)); return SCTP_DISPOSITION_CONSUME; - -nomem: - return SCTP_DISPOSITION_NOMEM; } /* |