mirror of https://gitee.com/openkylin/libvirt.git
security_dac: Don't check for !priv in virSecurityDACSetOwnershipInternal()
The virSecurityDACSetOwnershipInternal() has two callers and in both the private data (@priv) is obtained via virSecurityManagerGetPrivateData(). But in case of DAC driver the private data can never be NULL. This is because the private data is allocated in virSecurityManagerNewDriver() according to .privateDataLen attribute of secdriver. In case of DAC driver the attribute is set to sizeof(virSecurityDACData). NB, no other function within DAC driver checks for !priv. Signed-off-by: Michal Privoznik <mprivozn@redhat.com> Reviewed-by: Ján Tomko <jtomko@redhat.com>
This commit is contained in:
parent
1740f33bc8
commit
4ac78b95d3
|
@ -677,7 +677,7 @@ virSecurityDACSetOwnershipInternal(const virSecurityDACData *priv,
|
|||
/* Be aware that this function might run in a separate process.
|
||||
* Therefore, any driver state changes would be thrown away. */
|
||||
|
||||
if (priv && src && priv->chownCallback) {
|
||||
if (src && priv->chownCallback) {
|
||||
rc = priv->chownCallback(src, uid, gid);
|
||||
/* here path is used only for error messages */
|
||||
path = NULLSTR(src->path);
|
||||
|
|
Loading…
Reference in New Issue