net/tls: Remove redundant initialization of record
authorJiapeng Chong <jiapeng.chong@linux.alibaba.com>
Tue, 27 Apr 2021 10:28:22 +0000 (18:28 +0800)
committerDavid S. Miller <davem@davemloft.net>
Tue, 27 Apr 2021 21:15:19 +0000 (14:15 -0700)
commit3afef8c7aa2de3574021c848b5f7c62687e6b166
treeb6e44bfed5446fd14a8f70686ee8c4d69fbe4f8e
parent4db6187d721ed6a30df658da137a12246fe6a1b7
net/tls: Remove redundant initialization of record

record is being initialized to ctx->open_record but this is never
read as record is overwritten later on.  Remove the redundant
initialization.

Cleans up the following clang-analyzer warning:

net/tls/tls_device.c:421:26: warning: Value stored to 'record' during
its initialization is never read [clang-analyzer-deadcode.DeadStores].

Reported-by: Abaci Robot <abaci@linux.alibaba.com>
Signed-off-by: Jiapeng Chong <jiapeng.chong@linux.alibaba.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/tls/tls_device.c