mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-13 12:39:09 +02:00
* small fix for NIL arg ptr in first executeprocess
This commit is contained in:
parent
e750e24f3b
commit
3896b0fe05
@ -507,7 +507,13 @@ Begin
|
|||||||
CommandLine:=ComLine;
|
CommandLine:=ComLine;
|
||||||
cmdline2:=StringtoPPChar(CommandLine,1);
|
cmdline2:=StringtoPPChar(CommandLine,1);
|
||||||
cmdline2^:=pchar(Path);
|
cmdline2^:=pchar(Path);
|
||||||
end;
|
end
|
||||||
|
else
|
||||||
|
begin
|
||||||
|
getmem(cmdline2,2*sizeof(pchar));
|
||||||
|
cmdline2^:=pchar(Path);
|
||||||
|
cmdline2[1]:=nil;
|
||||||
|
end;
|
||||||
{$else}
|
{$else}
|
||||||
if Pos ('"', Path) = 0 then
|
if Pos ('"', Path) = 0 then
|
||||||
CommandLine := '"' + Path + '"'
|
CommandLine := '"' + Path + '"'
|
||||||
@ -629,7 +635,10 @@ end.
|
|||||||
{
|
{
|
||||||
|
|
||||||
$Log$
|
$Log$
|
||||||
Revision 1.37 2004-03-04 22:15:16 marco
|
Revision 1.38 2004-04-20 18:24:32 marco
|
||||||
|
* small fix for NIL arg ptr in first executeprocess
|
||||||
|
|
||||||
|
Revision 1.37 2004/03/04 22:15:16 marco
|
||||||
* UnixType changes. Please report problems to me.
|
* UnixType changes. Please report problems to me.
|
||||||
|
|
||||||
Revision 1.36 2004/02/13 10:50:23 marco
|
Revision 1.36 2004/02/13 10:50:23 marco
|
||||||
|
Loading…
Reference in New Issue
Block a user