mirror of
https://github.com/PowerShell/openssh-portable.git
synced 2025-09-02 23:58:36 +02:00
* Alternate Thread Creation API To Avoid Memory Leaks - Switched from CreateThread() to _beginthreadex() and ExitThread() to _endthreadex() in order to avoid potential leaks when linking with static CRT library. - Addressed a variety of warnings that were being detected with static code analysis. * Addressed Type Cast Warning - Added explicit cast to the output of _beginthreadex() to avoid a compiler warning. * Indentation Fix