From 464fda3fa501bca89bdf413416222ca9dacc5871 Mon Sep 17 00:00:00 2001 From: Alan Mishchenko Date: Thu, 17 Mar 2011 12:44:43 -0700 Subject: Fix parsing tab symbol in Liberty files. --- src/map/amap/amapLiberty.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/map/amap/amapLiberty.c') diff --git a/src/map/amap/amapLiberty.c b/src/map/amap/amapLiberty.c index cf74a612..8006d61d 100644 --- a/src/map/amap/amapLiberty.c +++ b/src/map/amap/amapLiberty.c @@ -596,7 +596,7 @@ static inline int Amap_LibertySkipEntry( char ** ppPos, char * pEnd ) else { for ( ; pPos < pEnd; pPos++ ) - if ( *pPos == ' ' || *pPos == '\r' || *pPos == '\n' || + if ( *pPos == ' ' || *pPos == '\r' || *pPos == '\n' || *pPos == '\t' || *pPos == ':' || *pPos == ';' || *pPos == '(' || *pPos == ')' || *pPos == '{' || *pPos == '}' ) -- cgit v1.2.3