| Anonymous | Login | Signup for a new account | 2010-09-09 03:35 CEST |
| Main | My View | View Issues | Change Log | Roadmap | Docs |
| Viewing Issue Simple Details [ Jump to Notes ] | [ View Advanced ] [ Issue History ] [ Print ] | ||||||
| ID | Category | Severity | Reproducibility | Date Submitted | Last Update | ||
| 0005166 | [JEDI VCL] 00 JVCL Components | minor | always | 2010-02-11 16:44 | 2010-03-08 16:42 | ||
| Reporter | lguillau | View Status | public | ||||
| Assigned To | obones | ||||||
| Priority | normal | Resolution | fixed | ||||
| Status | resolved | Product Version | Daily / SVN | ||||
| Summary | 0005166: In JvUrlListGrabber.pas, procedure ParseUrl, Error parsing the Port part of the URL | ||||||
| Description |
In 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); |
||||||
| Additional Information | |||||||
| Tags | No tags attached. | ||||||
| Attached Files | |||||||
|
|
|||||||
| Mantis 1.1.6[^] Copyright © 2000 - 2008 Mantis Group |