Cómo modificar el archivo tpool.dll en TDX
void InitStack(SqStack *S)
{
S->base = (SElemType *)malloc(STACK_INIT_SIZE * sizeof(SElemType));
if( ! S->base ) exit(0);
S->top = S->base;
S->stacksize = STACK_INIT_SIZE;
}
{
S->base = (SElemType *)malloc(STACK_INIT_SIZE * sizeof(SElemType));
if( ! S->base ) exit(0);
S->top = S->base;
S->stacksize = STACK_INIT_SIZE;
}