Commit 1ccc1c82 by Tom Tromey Committed by Tom Tromey

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

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

From-SVN: r96832
parent 6ec4845e
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
......
......@@ -141,6 +141,10 @@ final class VMCompiler
catch (java.io.IOException _)
{
}
catch (java.nio.BufferUnderflowException _)
{
// Invalid map file.
}
}
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment