fixed serious livelock bug in Directory.java
[org.ibex.core.git] / src / org / ibex / js / Directory.java
index 5f5ac38..e9f7b95 100644 (file)
@@ -93,7 +93,7 @@ public class Directory extends JS {
             File f2 = new File(f.getAbsolutePath() + File.separatorChar + FileNameEncoder.encode(key));
             if (!f2.exists()) return null;
             if (f2.isDirectory()) return new Directory(f2);
-            char[] chars = new char[(int)f2.length()];
+            char[] chars = new char[((int)f2.length()) * 2];
             int numchars = 0;
             Reader r = new InputStreamReader(new FileInputStream(f2));
             while(true) {