PR: 2376
Submitted by: Guenter <lists@gknw.net> Reviewed by: steve Cleanup alloca use, fix Win32 target for OpenWatcom.
This commit is contained in:
parent
1977bafba4
commit
a28cee6efe
1 changed files with 11 additions and 9 deletions
|
@ -743,6 +743,16 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason,
|
||||||
#if defined(_WIN32) && !defined(__CYGWIN__)
|
#if defined(_WIN32) && !defined(__CYGWIN__)
|
||||||
#include <tchar.h>
|
#include <tchar.h>
|
||||||
#include <signal.h>
|
#include <signal.h>
|
||||||
|
#ifdef __WATCOMC__
|
||||||
|
#if defined(_UNICODE) || defined(__UNICODE__)
|
||||||
|
#define _vsntprintf _vsnwprintf
|
||||||
|
#else
|
||||||
|
#define _vsntprintf _vsnprintf
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
#ifdef _MSC_VER
|
||||||
|
#define alloca _alloca
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(_WIN32_WINNT) && _WIN32_WINNT>=0x0333
|
#if defined(_WIN32_WINNT) && _WIN32_WINNT>=0x0333
|
||||||
int OPENSSL_isservice(void)
|
int OPENSSL_isservice(void)
|
||||||
|
@ -773,11 +783,7 @@ int OPENSSL_isservice(void)
|
||||||
|
|
||||||
if (len>512) return -1; /* paranoia */
|
if (len>512) return -1; /* paranoia */
|
||||||
len++,len&=~1; /* paranoia */
|
len++,len&=~1; /* paranoia */
|
||||||
#ifdef _MSC_VER
|
|
||||||
name=(WCHAR *)_alloca(len+sizeof(WCHAR));
|
|
||||||
#else
|
|
||||||
name=(WCHAR *)alloca(len+sizeof(WCHAR));
|
name=(WCHAR *)alloca(len+sizeof(WCHAR));
|
||||||
#endif
|
|
||||||
if (!GetUserObjectInformationW (h,UOI_NAME,name,len,&len))
|
if (!GetUserObjectInformationW (h,UOI_NAME,name,len,&len))
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
|
@ -822,11 +828,7 @@ void OPENSSL_showfatal (const char *fmta,...)
|
||||||
size_t len_0=strlen(fmta)+1,i;
|
size_t len_0=strlen(fmta)+1,i;
|
||||||
WCHAR *fmtw;
|
WCHAR *fmtw;
|
||||||
|
|
||||||
#ifdef _MSC_VER
|
fmtw = (WCHAR *)alloca(len_0*sizeof(WCHAR));
|
||||||
fmtw = (WCHAR *)_alloca (len_0*sizeof(WCHAR));
|
|
||||||
#else
|
|
||||||
fmtw = (WCHAR *)alloca (len_0*sizeof(WCHAR));
|
|
||||||
#endif
|
|
||||||
if (fmtw == NULL) { fmt=(const TCHAR *)L"no stack?"; break; }
|
if (fmtw == NULL) { fmt=(const TCHAR *)L"no stack?"; break; }
|
||||||
|
|
||||||
#ifndef OPENSSL_NO_MULTIBYTE
|
#ifndef OPENSSL_NO_MULTIBYTE
|
||||||
|
|
Loading…
Reference in a new issue