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
This commit is contained in:
Kyle Galloway 2007-04-23 14:23:39 +00:00 committed by Kyle Galloway
parent 3b5ee6a4c1
commit a8a423360b
2 changed files with 14 additions and 1 deletions

View File

@ -1,3 +1,8 @@
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):

View File

@ -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