aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorAnders Svensson <[email protected]>2017-04-04 11:24:48 +0200
committerAnders Svensson <[email protected]>2017-06-11 16:30:38 +0200
commit200697ef596dbe689443834aaf5aa0303971ca5d (patch)
treef4cdb610aa255a9b4b6cb42f67eaf224dac90ace /lib
parentca09cf7b697798aca5a4f81a11d5ad1d90f4107e (diff)
downloadotp-200697ef596dbe689443834aaf5aa0303971ca5d.tar.gz
otp-200697ef596dbe689443834aaf5aa0303971ca5d.tar.bz2
otp-200697ef596dbe689443834aaf5aa0303971ca5d.zip
Fix incomprehensible dialyzer warning
This: diameter_tcp.erl:241: Record construction #transport{parent::'false',ssl::boolean() | maybe_improper_list(),frag::<<>>,tref::'false',flush::'false',pending::0,reset::{1 | 4,0 | 2},throttled::boolean(),q::{0,queue:queue(_)},monitor::'undefined' | pid()} violates the declared type of field parent::pid() The problem isn't #transport.pid at all, it's #monitor.pid, and the only relation is that the pid that's assigned to the latter is also (later) assigned to the former. There is no record construction that assigns false to #transport.parent. Introduced in commit 33a535e4.
Diffstat (limited to 'lib')
-rw-r--r--lib/diameter/src/transport/diameter_tcp.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/diameter/src/transport/diameter_tcp.erl b/lib/diameter/src/transport/diameter_tcp.erl
index c81701b624..8f2e9027fc 100644
--- a/lib/diameter/src/transport/diameter_tcp.erl
+++ b/lib/diameter/src/transport/diameter_tcp.erl
@@ -80,7 +80,7 @@
%% Monitor process state. The name monitor predates its role as sender.
-record(monitor,
- {parent :: reference() | false,
+ {parent :: reference() | false | pid(),
transport = self() :: pid(),
socket :: inet:socket() | ssl:sslsocket() | undefined,
module :: module() | undefined}).