VMCompiler.java (static block): Also catch BufferUnderflowException.

* java/lang/VMCompiler.java (static block): Also catch
	BufferUnderflowException.

From-SVN: r96832
This commit is contained in:
Tom Tromey 2005-03-21 20:59:18 +00:00 committed by Tom Tromey
parent 6ec4845e26
commit 1ccc1c82d8
2 changed files with 9 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2005-03-21 Tom Tromey <tromey@redhat.com>
* java/lang/VMCompiler.java (static block): Also catch
BufferUnderflowException.
2005-03-21 Zack Weinberg <zack@codesourcery.com>
* configure.ac: Do not invoke TL_AC_GCC_VERSION. Do not

View File

@ -141,6 +141,10 @@ final class VMCompiler
catch (java.io.IOException _)
{
}
catch (java.nio.BufferUnderflowException _)
{
// Invalid map file.
}
}
}
}