Hello,

my fpc (current version from svn ) compiler crashes, when I compile a procedure like this:

procedure Crash;
var
 c0: function: pointer; cdecl;
 c1: function: integer; cdecl;
 m: HMODULE;
begin
 m:= LoadLibrary('blah.dll');
 c0:= GetProcAddress(m, 'c0');
 c1:= c0();
 c1;
end;

btw. is there a known problem when using "cdecl" ?

cheers,

Adrian.
_______________________________________________
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Reply via email to