[vlc-devel] commit: Build fix ( Rémi Denis-Courmont )
    git version control 
    git at videolan.org
       
    Wed Nov  4 21:38:07 CET 2009
    
    
  
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Wed Nov  4 22:37:49 2009 +0200| [af0441e86acf74c3ee3bf15ab3f0e35c3676090a] | committer: Rémi Denis-Courmont 
Build fix
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=af0441e86acf74c3ee3bf15ab3f0e35c3676090a
---
 src/text/filesystem.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/src/text/filesystem.c b/src/text/filesystem.c
index 35f93cd..6aa499d 100644
--- a/src/text/filesystem.c
+++ b/src/text/filesystem.c
@@ -123,7 +123,7 @@ int utf8_open (const char *filename, int flags, ...)
         return -1;
     }
 
-    int fd = open (local_name, flags | O_CLOEXEC, mode);
+    int fd = open (local_name, flags, mode);
 #ifdef HAVE_FCNTL
     if (fd != -1)
         fcntl (fd, F_SETFD, FD_CLOEXEC);
    
    
More information about the vlc-devel
mailing list