mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2025-12-01 09:32:08 +03:00
Remove superfluous statement
Clang's static analyzer reported that the value assigned to pcksum is
never used. That is because we initialize both zc and pcksum to {{ 0 }}
and then do `pcksum = zc;`. That is fairly pointless. However, it has
the effect of generating a false positive in Clang's static analyzer.
Since noise from false positives can obscure real issues, we fix it
anyway.
Signed-off-by: Richard Yao <ryao@gentoo.org>
Signed-off-by: Ned Bass <bass6@llnl.gov>
Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
Issue #2330
This commit is contained in:
parent
4def05f8a6
commit
2024041b6c
@ -127,7 +127,6 @@ main(int argc, char *argv[])
|
|||||||
}
|
}
|
||||||
|
|
||||||
send_stream = stdin;
|
send_stream = stdin;
|
||||||
pcksum = zc;
|
|
||||||
while (ssread(drr, sizeof (dmu_replay_record_t), &zc)) {
|
while (ssread(drr, sizeof (dmu_replay_record_t), &zc)) {
|
||||||
|
|
||||||
if (first) {
|
if (first) {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user