Changeset 12641


Ignore:
Timestamp:
05/01/10 07:37:20 (14 years ago)
Author:
Mark Evenson
Message:

Fix recursion bug in constructing Pathnames from "file" scheme URLs.

Found by Alan Ruttenberg.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abcl/src/org/armedbear/lisp/Pathname.java

    r12617 r12641  
    346346            String scheme = url.getProtocol();
    347347            if (scheme.equals("file")) {
    348                 Pathname p = new Pathname(s);
     348                Pathname p = new Pathname(url.getFile());
    349349                this.host = p.host;
    350350                this.device = p.device;
Note: See TracChangeset for help on using the changeset viewer.