diff options
author | John Levon <john.levon@joyent.com> | 2019-08-27 21:56:50 +0000 |
---|---|---|
committer | John Levon <john.levon@joyent.com> | 2019-08-28 08:58:06 +0000 |
commit | fa1252de73f343f36bf1e6f366902ba96c480aaa (patch) | |
tree | c5e3ad394bfba6fc3f094c050ca250897ce56a4b /usr/src/uts/common/inet/tcp/tcp_timers.c | |
parent | df3850281ea4def494e12172cae5a6181823c77d (diff) | |
download | illumos-joyent-fa1252de73f343f36bf1e6f366902ba96c480aaa.tar.gz |
OS-7960 need fixes for NULL as a pointer
Reviewed by: Jerry Jelinek <jerry.jelinek@joyent.com>
Reviewed by: Ryan Zezeski <rpz@joyent.com>
Reviewed by: Robert Mustacchi <rm@joyent.com>
Approved by: Robert Mustacchi <rm@joyent.com>
Diffstat (limited to 'usr/src/uts/common/inet/tcp/tcp_timers.c')
-rw-r--r-- | usr/src/uts/common/inet/tcp/tcp_timers.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr/src/uts/common/inet/tcp/tcp_timers.c b/usr/src/uts/common/inet/tcp/tcp_timers.c index 804160f628..df8b50f345 100644 --- a/usr/src/uts/common/inet/tcp/tcp_timers.c +++ b/usr/src/uts/common/inet/tcp/tcp_timers.c @@ -22,7 +22,7 @@ /* * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2011 Nexenta Systems, Inc. All rights reserved. - * Copyright 2011 Joyent, Inc. All rights reserved. + * Copyright 2019 Joyent, Inc. * Copyright (c) 2014, 2017 by Delphix. All rights reserved. */ @@ -784,7 +784,7 @@ tcp_timer(void *arg) SL_TRACE, "tcp_timer: zero win"); } } else { - cc_cong_signal(tcp, NULL, CC_RTO); + cc_cong_signal(tcp, 0, CC_RTO); } break; } |