Robert Shearman <[EMAIL PROTECTED]> writes:

> +    memcpy(&cIids, buf, sizeof(USHORT));
> +    buf += sizeof(USHORT);
> +    ir = (REMINTERFACEREF*)buf;
> +    pResults = alloca(cIids * sizeof(HRESULT));

You shouldn't use alloca, it's not portable, plus the space may not be
available since the app controls the stack size.

-- 
Alexandre Julliard
[EMAIL PROTECTED]

Reply via email to