1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-14 07:30:32 +02:00

Merge remote-tracking branch 'local-2.0/stable-2.0'

This commit is contained in:
Andy Wingo 2011-06-16 20:01:56 +02:00
commit 99cc1092a8
115 changed files with 4810 additions and 1543 deletions

View file

@ -295,7 +295,7 @@ SCM_DEFINE (scm_load_objcode, "load-objcode", 1, 0, 0,
SCM_VALIDATE_STRING (1, file);
c_file = scm_to_locale_string (file);
fd = open (c_file, O_RDONLY);
fd = open (c_file, O_RDONLY | O_CLOEXEC);
free (c_file);
if (fd < 0) SCM_SYSERROR;