View Issue Details

IDProjectCategoryView StatusLast Update
0005166JEDI VCL00 JVCL Componentspublic2011-06-10 16:09
ReporterlguillauAssigned Toobones 
PrioritynormalSeverityminorReproducibilityalways
Status resolvedResolutionfixed 
Product VersionDaily / GIT 
Target Version3.40Fixed in Version3.40 
Summary0005166: In JvUrlListGrabber.pas, procedure ParseUrl, Error parsing the Port part of the URL
DescriptionIn JvUrlListGrabber.pas, procedure ParseUrl, the code in charge of parsing the host and port part of the url seems to be incorrect. (at the end of the procedure)
The code:
  Host := Copy(Host, 1, Pos(':', Host) - 1);
  Port := StrToIntDef(Copy(Host, Pos(':', Host) + 1, Length(Host)), 0);
should be changed to (just line swapping):
  Port := StrToIntDef(Copy(Host, Pos(':', Host) + 1, Length(Host)), 0);
  Host := Copy(Host, 1, Pos(':', Host) - 1);
TagsNo tags attached.

Activities

obones

2010-03-08 16:42

administrator   ~0017264

Thanks, this is now fixed in SVN

Issue History

Date Modified Username Field Change
2010-02-11 16:44 lguillau New Issue
2010-03-08 16:42 obones Note Added: 0017264
2010-03-08 16:42 obones Assigned To => obones
2010-03-08 16:42 obones Status new => resolved
2010-03-08 16:42 obones Resolution open => fixed
2010-03-08 16:42 obones Fixed in Version => Daily / SVN
2010-03-08 16:42 obones Target Version => 3.40 - not yet released
2011-06-10 16:09 obones Fixed in Version Daily / SVN => 3.40