Skip to content
Snippets Groups Projects
Commit ddb12b1f authored by Henrik (Grubba) Grubbström's avatar Henrik (Grubba) Grubbström
Browse files

Now closes all other fds than stdin, stdout and stderr at start.

Rev: src/main.c:1.25
parent c36b851e
No related branches found
No related tags found
No related merge requests found
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
||| See the files COPYING and DISCLAIMER for more information. ||| See the files COPYING and DISCLAIMER for more information.
\*/ \*/
#include "global.h" #include "global.h"
RCSID("$Id: main.c,v 1.24 1997/10/27 09:59:22 hubbe Exp $"); RCSID("$Id: main.c,v 1.25 1997/11/01 23:05:29 grubba Exp $");
#include "backend.h" #include "backend.h"
#include "module.h" #include "module.h"
#include "object.h" #include "object.h"
...@@ -63,6 +63,13 @@ void main(int argc, char **argv, char **env) ...@@ -63,6 +63,13 @@ void main(int argc, char **argv, char **env)
ARGV=argv; ARGV=argv;
/* Close extra fds (if any) */
for (e=3; e < MAX_OPEN_FILEDESCRIPTORS; e++) {
do {
num = close(e);
} while ((num < 0) && (errno == EINTR));
}
#ifdef HAVE_SETLOCALE #ifdef HAVE_SETLOCALE
#ifdef LC_NUMERIC #ifdef LC_NUMERIC
setlocale(LC_NUMERIC, "C"); setlocale(LC_NUMERIC, "C");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment