[vlc-devel] commit: Ignore invalid ACL allow line ( Rémi Denis-Courmont )

git version control git at videolan.org
Wed Jul 2 21:50:12 CEST 2008


vlc | branch: master | Rémi Denis-Courmont <rdenis at simphalempin.com> | Wed Jul  2 22:52:08 2008 +0300| [1a2a411c38b705707cb68f958c0931050cb1d199]

Ignore invalid ACL allow line

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=1a2a411c38b705707cb68f958c0931050cb1d199
---

 src/network/acl.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/network/acl.c b/src/network/acl.c
index fcc5262..1a5d8f0 100644
--- a/src/network/acl.c
+++ b/src/network/acl.c
@@ -377,7 +377,7 @@ int ACL_LoadFile( vlc_acl_t *p_acl, const char *psz_path )
             : ACL_AddHost( p_acl, psz_ip, true ) )
         {
             msg_Err( p_acl->p_owner, "cannot add ACL from %s", psz_path );
-            goto error;
+            continue;
         }
     }
 




More information about the vlc-devel mailing list