Changeset 984766504502f31ce375f873a20e34ace880d7ac

Show
Ignore:
Timestamp:
02/07/08 21:34:17 (3 months ago)
Author:
Rémi Denis-Courmont <rdenis@simphalempin.com>
git-committer:
Rémi Denis-Courmont <rdenis@simphalempin.com> 1215027257 +0300
git-parent:

[0403c7a8b701d323a1084a86cf0ef0a3a783e632]

git-author:
Rémi Denis-Courmont <rdenis@simphalempin.com> 1215027257 +0300
Message:

HTTP ACL: fail closed, not open

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/control/http/util.c

    r1f03f5e r9847665  
    185185    { 
    186186        ACL_Destroy( p_acl ); 
     187 
     188        struct stat st; 
     189        if( stat( dir, &st ) == 0 ) 
     190        { 
     191            closedir( dir ); 
     192            return VLC_EGENERIC; 
     193        } 
    187194        p_acl = NULL; 
    188195    }