mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-06-07 05:29:22 +00:00
skypiax: Visual C: correcting a typo, was causing 'argument 1' might be '0': this does not adhere to the specification for the function 'CloseHandle'
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@12504 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
292ac2ae88
commit
ff0ee26549
@ -1051,7 +1051,7 @@ int win32_Initialize_CreateWindowClass(private_t * tech_pvt)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (fReturnStatus == 0)
|
if (fReturnStatus == 0)
|
||||||
CloseHandle(tech_pvt->SkypiaxHandles.win32_hInit_ProcessHandle),
|
CloseHandle(tech_pvt->SkypiaxHandles.win32_hInit_ProcessHandle);
|
||||||
tech_pvt->SkypiaxHandles.win32_hInit_ProcessHandle = NULL;
|
tech_pvt->SkypiaxHandles.win32_hInit_ProcessHandle = NULL;
|
||||||
return (fReturnStatus);
|
return (fReturnStatus);
|
||||||
}
|
}
|
||||||
@ -1060,7 +1060,7 @@ void win32_DeInitialize_DestroyWindowClass(private_t * tech_pvt)
|
|||||||
{
|
{
|
||||||
UnregisterClass(tech_pvt->SkypiaxHandles.win32_acInit_WindowClassName,
|
UnregisterClass(tech_pvt->SkypiaxHandles.win32_acInit_WindowClassName,
|
||||||
tech_pvt->SkypiaxHandles.win32_hInit_ProcessHandle);
|
tech_pvt->SkypiaxHandles.win32_hInit_ProcessHandle);
|
||||||
CloseHandle(tech_pvt->SkypiaxHandles.win32_hInit_ProcessHandle),
|
CloseHandle(tech_pvt->SkypiaxHandles.win32_hInit_ProcessHandle);
|
||||||
tech_pvt->SkypiaxHandles.win32_hInit_ProcessHandle = NULL;
|
tech_pvt->SkypiaxHandles.win32_hInit_ProcessHandle = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user