fix(deps): update github.com/containers/libhvee digest to 9651e31

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
This commit is contained in:
renovate[bot]
2023-11-09 02:15:20 +00:00
committed by GitHub
parent dfffa7b188
commit 60f67eec75
4 changed files with 5 additions and 9 deletions

View File

@ -497,11 +497,7 @@ func (i *Instance) NextAsVariant() (bool, string, *ole.VARIANT, CIMTYPE_ENUMERAT
return true, "", nil, cimType, flavor, nil
}
defer func() {
if err := ole.SysFreeString((*int16)(unsafe.Pointer(strName))); err != nil {
logrus.Error(err)
}
}()
defer ole.SysFreeString((*int16)(unsafe.Pointer(strName))) //nolint:errcheck
name := ole.BstrToString(strName)
return false, name, &variant, cimType, flavor, nil