xz: Add a missing test for TUKLIB_DOSLIKE.

This commit is contained in:
Lasse Collin 2013-09-17 11:55:38 +03:00
parent 6b44b4a775
commit 8083e03291
1 changed files with 2 additions and 0 deletions

View File

@ -658,6 +658,7 @@ io_open_src(const char *src_name)
static void
io_close_src(file_pair *pair, bool success)
{
#ifndef TUKLIB_DOSLIKE
if (restore_stdin_flags) {
assert(pair->src_fd == STDIN_FILENO);
@ -668,6 +669,7 @@ io_close_src(file_pair *pair, bool success)
"to standard input: %s"),
strerror(errno));
}
#endif
if (pair->src_fd != STDIN_FILENO && pair->src_fd != -1) {
#ifdef TUKLIB_DOSLIKE