Commit a8a42336 by Kyle Galloway Committed by Kyle Galloway

natVMVirtualMachine.cc (getSourceFile): Check for null source file and throw an…

natVMVirtualMachine.cc (getSourceFile): Check for null source file and throw an exception indicating this.

2007-04-23  Kyle Galloway  <kgallowa@redhat.com>

	* gnu/classpath/jdwp/natVMVirtualMachine.cc (getSourceFile): Check
	for null source file and throw an exception indicating this.

From-SVN: r124066
parent 3b5ee6a4
2007-04-23 Kyle Galloway <kgallowa@redhat.com>
* gnu/classpath/jdwp/natVMVirtualMachine.cc (getSourceFile): Check
for null source file and throw an exception indicating this.
2007-04-20 Keith Seitz <keiths@redhat.com>
* gnu/gcj/jvmti/BreakpointManager.java (newBreakpoint):
......
......@@ -46,6 +46,7 @@ details. */
#include <gnu/classpath/jdwp/event/filters/IEventFilter.h>
#include <gnu/classpath/jdwp/event/filters/LocationOnlyFilter.h>
#include <gnu/classpath/jdwp/event/filters/StepFilter.h>
#include <gnu/classpath/jdwp/exception/AbsentInformationException.h>
#include <gnu/classpath/jdwp/exception/InvalidFrameException.h>
#include <gnu/classpath/jdwp/exception/InvalidLocationException.h>
#include <gnu/classpath/jdwp/exception/InvalidMethodException.h>
......@@ -647,7 +648,14 @@ jstring
gnu::classpath::jdwp::VMVirtualMachine::
getSourceFile (jclass clazz)
{
return _Jv_GetInterpClassSourceFile (clazz);
jstring file = _Jv_GetInterpClassSourceFile (clazz);
// Check if the source file was found.
if (file == NULL)
throw new exception::AbsentInformationException (
_Jv_NewStringUTF("Source file not found"));
return file;
}
void
......
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