View Issue Details

IDProjectCategoryView StatusLast Update
0001386JEDI VCL00 JVCL Componentspublic2004-03-09 02:44
ReporteranonymousAssigned Touser72 
PrioritynormalSeverityminorReproducibilityalways
Status closedResolutionfixed 
Product Version 
Target VersionFixed in Version 
Summary0001386: function TJvFtpThread.GetLastErrorMsg returns uninitialized string.
Descriptionprocedure TFrmMain.JvFTPGrabber1Error(Sender: TObject; ErrorMsg: String);
begin
  showmessage(ErrorMsg); <-- un-initialized string is returned.
end;
Additional InformationIn my case the following method returns an unitialized string.

function TJvFtpThread.GetLastErrorMsg: string;
var
  Msg: array [0..1023] of Char;
begin
  FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM, nil, GetLastError, 0, Msg, SizeOf(Msg), nil);
  Result := Msg;
end;
TagsNo tags attached.

Activities

user72

2004-02-27 14:53

  ~0003111

Fixed in CVS

Issue History

Date Modified Username Field Change
2004-02-27 12:28 anonymous New Issue
2004-02-27 14:53 user72 Status new => resolved
2004-02-27 14:53 user72 Resolution open => fixed
2004-02-27 14:53 user72 Assigned To => user72
2004-02-27 14:53 user72 Note Added: 0003111
2004-03-09 02:44 user72 Status resolved => closed