diff options
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/parse_config.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libbb/parse_config.c b/libbb/parse_config.c index 8701b010c..f7a2b81b9 100644 --- a/libbb/parse_config.c +++ b/libbb/parse_config.c | |||
@@ -115,6 +115,10 @@ static int get_line_with_continuation(parser_t *parser) | |||
115 | parser->lineno++; | 115 | parser->lineno++; |
116 | if (line[len - 1] == '\n') | 116 | if (line[len - 1] == '\n') |
117 | len--; | 117 | len--; |
118 | #if ENABLE_PLATFORM_MINGW32 | ||
119 | if (line[len - 1] == '\r') | ||
120 | len--; | ||
121 | #endif | ||
118 | if (len == 0 || line[len - 1] != '\\') | 122 | if (len == 0 || line[len - 1] != '\\') |
119 | break; | 123 | break; |
120 | len--; | 124 | len--; |