Crash due to some fixme messages in CreateProcessA

Francois Gouget fgouget at free.fr
Fri Apr 20 17:34:40 CDT 2001


On Fri, 20 Apr 2001, Lionel Ulmer wrote:
[...]
>  if (lpStartupInfo->lpDesktop)
>     FIXME("(%s,...): lpStartupInfo->lpDesktop %s ignored\n", 
>           name, lpStartupInfo->lpDesktop);
[...]
> So what should we do ? Suppress the '%s' and replace it with a '%p' ? Add a
> check on the pointer to see if it's valid ?

   Use debugstr_a?

  if (lpStartupInfo->lpDesktop)
     FIXME("(%s,...): lpStartupInfo->lpDesktop %s ignored\n",
           debugstr_a(name), debugstr_a(lpStartupInfo->lpDesktop));


--
Francois Gouget         fgouget at free.fr        http://fgouget.free.fr/
           Demander si un ordinateur peut penser revient à demander
                          si un sous-marin peut nager.





More information about the wine-devel mailing list