mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-02 07:30:55 -08:00
Solve bogus patch to si::pathname-translations.
This commit is contained in:
parent
339300744e
commit
ab82a93fda
1 changed files with 2 additions and 2 deletions
|
|
@ -1010,9 +1010,9 @@ coerce_to_from_pathname(cl_object x, cl_object host)
|
|||
@
|
||||
/* Check that host is a valid host name */
|
||||
assert_type_string(host);
|
||||
parsed_length = host->string.fillp;
|
||||
length = host->string.fillp;
|
||||
parse_word(host->string.self, '\0', WORD_LOGICAL, 0, length, &parsed_length);
|
||||
if (parsed_length <= host->string.fillp)
|
||||
if (parsed_length < host->string.fillp)
|
||||
FEerror("Wrong host syntax ~S", 1, host);
|
||||
|
||||
/* Find its translation list */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue