if (q == NULL) {
p = Util_SafeStrdup(GetOldMachineID());
} else {
+
+ /*
+ * Coverity flags this as dead code on Non-Windows, non-Apple
+ * Platforms, since q will be NULL and this code not reached.
+ */
+ /* coverity[dead_error_begin] */
p = Str_SafeAsprintf(NULL, "uuid=%s", q);
Posix_Free(q);
if (VIX_OK != err) {
if (impersonated) {
+
+ /*
+ * Coverity flags this as dead code on non-Windows platforms,
+ * where impersonated can't be TRUE if VIX_OK != err.
+ */
+ /* coverity[dead_error_begin] */
vgErr = VGAuth_EndImpersonation(ctx);
ASSERT(vgErr == VGAUTH_E_OK);
}
if (VIX_OK != err) {
if (impersonated) {
+
+ /*
+ * Coverity flags this as dead code on non-Windows platforms,
+ * where impersonated can't be TRUE if VIX_OK != err.
+ */
+ /* coverity[dead_error_begin] */
vgErr = VGAuth_EndImpersonation(ctx);
ASSERT(vgErr == VGAUTH_E_OK);
}