diff options
Diffstat (limited to 'appl/lib/url.b')
| -rw-r--r-- | appl/lib/url.b | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/appl/lib/url.b b/appl/lib/url.b index 415018c2..c7af3b1c 100644 --- a/appl/lib/url.b +++ b/appl/lib/url.b @@ -195,7 +195,7 @@ split(s, c: string) : (string, string) canonize(s: string): string { (base, file) := S->splitr(s, "/"); - (n,path) := sys->tokenize(base, "/"); + (nil, path) := sys->tokenize(base, "/"); revpath : list of string = nil; for(p := path; p != nil; p = tl p) { if(hd p == "..") { |
