[
Date Prev][
Date Next][
Thread Prev][
Thread Next][
Date Index][
Thread Index]
[
List Home]
Re: [cdt-patch] Bug 25111 fixing
|
>
> Chandges are in Win32ProcessEx.c. Attached find an updated binary file.
>
It would make life and patch easier to process if you provide ChangeLog
entries like this:
2002-10-21 Alain Magloire
* library/Win32ProcessEx.c (waitFor): Get the exit value of the process
not starter.exe
* os/win32/x86/spawner.dll: Recompiled.
Patch from Alex Chapiro, for bug 25111.
Patch applied, Thanks
> Index: Win32ProcessEx.c
> ===================================================================
> RCS file: /home/tools/org.eclipse.cdt.core.win32/library/Win32ProcessEx.c,v
> retrieving revision 1.2
> diff -u -r1.2 Win32ProcessEx.c
> --- Win32ProcessEx.c 16 Oct 2002 12:11:04 -0000 1.2
> +++ Win32ProcessEx.c 21 Oct 2002 22:04:02 -0000
> @@ -539,7 +539,7 @@
>
> if (what == WAIT_OBJECT_0)
> {
> - GetExitCodeProcess((void *)(pCurProcInfo -> pid), &exit_code);
> + GetExitCodeProcess(hProc, &exit_code);
> }
>
>