diff options
author | Omar Polo <op@omarpolo.com> | 2021-01-11 14:26:43 +0000 |
---|---|---|
committer | Omar Polo <op@omarpolo.com> | 2021-01-11 14:26:43 +0000 |
commit | 6a9ae707737d978bccbabdc36beae509151a7be2 (patch) | |
tree | 25811c637d93c4990d8a20fdbcd4c3af0fb15314 /iri.c | |
parent | 3c1cf9d07cb679ba444566159538b510902f2de9 (diff) |
remove infinite loop
Diffstat (limited to 'iri.c')
-rw-r--r-- | iri.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -209,8 +209,8 @@ path_clean(char *path) /* 2. eliminate each . path name element */ for (i = path; *i; ++i) { - if ((i == path || *i == '/') && *(i+1) == '.' && - *(i+2) == '/') { + if ((i == path || *i == '/') && + *i != '.' && i[1] == '.' && i[2] == '/') { /* move also the \0 */ memmove(i, i+2, strlen(i)-1); i--; |