Browse Source

minor fix

Nicolas Cannasse 15 years ago
parent
commit
93516543cf
1 changed files with 2 additions and 0 deletions
  1. 2 0
      std/neko/zip/Reader.hx

+ 2 - 0
std/neko/zip/Reader.hx

@@ -275,6 +275,8 @@ class Reader {
 			var c = n.get(p);
 			if( c == 0 )
 				break;
+			if( c == 32 )
+				continue;
 			if( c < 48 || c > 55 )
 				throw "Invalid octal char";
 			i = (i * 8) + (c - 48);