From: Oliver Kurth Date: Tue, 4 Sep 2018 22:40:58 +0000 (-0700) Subject: Fix coverity complaint; not a real bug X-Git-Tag: stable-11.0.0~411 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9c4144b6538928015184a52e7e5231a56907dfba;p=thirdparty%2Fopen-vm-tools.git Fix coverity complaint; not a real bug --- diff --git a/open-vm-tools/vgauth/lib/impersonate.c b/open-vm-tools/vgauth/lib/impersonate.c index 8d1505f80..a1038f6a7 100644 --- a/open-vm-tools/vgauth/lib/impersonate.c +++ b/open-vm-tools/vgauth/lib/impersonate.c @@ -319,9 +319,9 @@ VGAuth_UserHandleFree(VGAuthUserHandle *handle) VGAuth_FreeAliasInfoContents(&(handle->details.val.samlData.aliasInfo)); } - g_free(handle); + Debug("%s: Freeing handle %p\n", __FUNCTION__, handle); - Debug("%s: Freed handle %p\n", __FUNCTION__, handle); + g_free(handle); }