mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-17 01:51:00 +03:00
Coverity 9656: Forward NULL
This was a false positive the callpath being walked is impossible because the splat_kmem_cache_test_kcp_alloc() function will ensure kcp->kcp_kcd[0] is initialized to NULL. However, there is no harm is making this explicit for the test case so I'm adding a line to clearly set it to correct the analysis.
This commit is contained in:
parent
1315c88437
commit
02c7f16494
@ -548,6 +548,7 @@ splat_kmem_cache_test(struct file *file, void *arg, char *name,
|
||||
return -ENOMEM;
|
||||
}
|
||||
|
||||
kcp->kcp_kcd[0] = NULL;
|
||||
kcp->kcp_cache =
|
||||
kmem_cache_create(SPLAT_KMEM_CACHE_NAME,
|
||||
kcp->kcp_size, kcp->kcp_align,
|
||||
|
Loading…
Reference in New Issue
Block a user