# HG changeset patch # User William Astle # Date 1359087872 25200 # Node ID 891bab942b5a457ec902c9f57e29a574fe713e64 # Parent 4b36eaaf80c35a145756ab16612eb783ecd9bf05 Another adjustment for the drive letter problem. Need to actually check for a drive letter being specified when looking for a an open type prefix tag otherwise the drive letter prefix is considered as an open type. diff -r 4b36eaaf80c3 -r 891bab942b5a lwasm/input.c --- a/lwasm/input.c Thu Jan 24 21:00:00 2013 -0700 +++ b/lwasm/input.c Thu Jan 24 21:24:32 2013 -0700 @@ -203,7 +203,7 @@ for (s2 = s; *s2 && (*s2 != ':'); s2++) /* do nothing */ ; - if (!*s2) + if (input_isabsolute(s) || !*s2) { t -> type = input_type_file; }