fix baseline build (old cairo) - 'cairo_rectangle_int_t' does not name a type
[LibreOffice.git] / external / python3 / python-3.3.3-py17797.patch.1
blob8fcb703f1935033df77fa3fbede15fff09808576
1 http://bugs.python.org/issue17797
2 http://connect.microsoft.com/VisualStudio/feedback/details/785119/
4 Visual Studio 2012 changed return value for fileno function that breaks
5 when python tries to check/setup stdin/out/err
6 GetStdHandle on Windows XP behaves contrary to the documentation...
8 diff --git a/Python/pythonrun.c b/Python/pythonrun.c
9 index 91d56b7..d28ffc7 100644
10 --- a/Python/pythonrun.c
11 +++ b/Python/pythonrun.c
12 @@ -1015,13 +1015,28 @@ error:
13  static int
14  is_valid_fd(int fd)
15  {
16 -    int dummy_fd;
17      if (fd < 0 || !_PyVerify_fd(fd))
18          return 0;
19 -    dummy_fd = dup(fd);
20 -    if (dummy_fd < 0)
21 -        return 0;
22 -    close(dummy_fd);
24 +#if defined(MS_WINDOWS) && defined(HAVE_FSTAT)
25 +    /* dup (DuplicateHandle) doesn't say fd is a valid *file* handle.
26 +     * It could be a current thread pseudo-handle.
27 +     */
28 +    {
29 +        struct stat buf;
30 +        if (fstat(fd, &buf) < 0 && (errno == EBADF || errno == ENOENT))
31 +            return 0;
32 +    }
33 +#else
34 +    {
35 +        int dummy_fd;
36 +        dummy_fd = dup(fd);
37 +        if (dummy_fd < 0)
38 +            return 0;
39 +        close(dummy_fd);
40 +    }
41 +#endif
43      return 1;
44  }