Re: user32: Resend Check for NULL pData in DdeClientTransAction expectingto be passed a handle

2008-09-08 Thread Jeff Latimer
Dmitry Timoshkov wrote: >> +if (pData == NULL) >> +{ >> +if (cbData == (DWORD)-1) >> +pConv->instance->lastError = DMLERR_INVALIDPARAMETER; >> +else >> +pConv->instance->lastError = DMLERR_MEMORY_ERROR; >> +return NULL; >> +} > > Alexandre

Re: user32: Resend Check for NULL pData in DdeClientTransAction expectingto be passed a handle

2008-09-07 Thread Jeff Latimer
Dmitry Timoshkov wrote: >> +if (pData == NULL) >> +{ >> +if (cbData == (DWORD)-1) >> +pConv->instance->lastError = DMLERR_INVALIDPARAMETER; >> +else >> +pConv->instance->lastError = DMLERR_MEMORY_ERROR; >> +return NULL; >> +} > > Alexandre

Re: user32: Resend Check for NULL pData in DdeClientTransAction expectingto be passed a handle

2008-09-06 Thread Dmitry Timoshkov
"Jeff Latimer" <[EMAIL PROTECTED]> wrote: > diff --git a/dlls/user32/dde_client.c b/dlls/user32/dde_client.c > index 99e2d1c..cbbf99a 100644 > --- a/dlls/user32/dde_client.c > +++ b/dlls/user32/dde_client.c > @@ -632,6 +632,15 @@ static WDML_XACT* WDML_ClientQueueExecute(WDML_CONV* > pConv, LPVOI