Merk
Tilgang til denne siden krever autorisasjon. Du kan prøve å logge på eller endre kataloger.
Tilgang til denne siden krever autorisasjon. Du kan prøve å endre kataloger.
'_alloca' cannot be called from within a catch block
Remarks
This error occurs when you use a call to _alloca from within a catch block.
Example
The following example generates C3204:
// C3204.cpp
// compile with: /EHsc
#include <malloc.h>
void ShowError(void)
{
try
{
}
catch(...)
{
_alloca(1); // C3204
}
}