strtod: avoid C99 decl-after-statement
[gnulib.git] / lib / fopen-safer.c
1 /* Invoke fopen, but avoid some glitches.
2
3    Copyright (C) 2001, 2004, 2005, 2006, 2009 Free Software
4    Foundation, Inc.
5
6    This program is free software: you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 3 of the License, or
9    (at your option) any later version.
10
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15
16    You should have received a copy of the GNU General Public License
17    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
18
19 /* Written by Paul Eggert.  */
20
21 #include <config.h>
22
23 #include "stdio-safer.h"
24
25 #include <errno.h>
26 #include <unistd.h>
27 #include "unistd-safer.h"
28
29 /* Like fopen, but do not return stdin, stdout, or stderr.  */
30
31 FILE *
32 fopen_safer (char const *file, char const *mode)
33 {
34   FILE *fp = fopen (file, mode);
35
36   if (fp)
37     {
38       int fd = fileno (fp);
39
40       if (0 <= fd && fd <= STDERR_FILENO)
41         {
42           int f = dup_safer (fd);
43
44           if (f < 0)
45             {
46               int e = errno;
47               fclose (fp);
48               errno = e;
49               return NULL;
50             }
51
52           if (fclose (fp) != 0
53               || ! (fp = fdopen (f, mode)))
54             {
55               int e = errno;
56               close (f);
57               errno = e;
58               return NULL;
59             }
60         }
61     }
62
63   return fp;
64 }