diff options
author | Kyle Galloway <kgallowa@redhat.com> | 2007-04-23 14:23:39 +0000 |
---|---|---|
committer | Kyle Galloway <kgallowa@gcc.gnu.org> | 2007-04-23 14:23:39 +0000 |
commit | a8a423360bf1e0e8dffac6087084a129d9251dc4 (patch) | |
tree | 25126b91f7b8a2feff3cb7a0e1c50df070b78240 /libjava | |
parent | 3b5ee6a4c1b078b6f707dcb92dfe1f79dd282a6c (diff) | |
download | gcc-a8a423360bf1e0e8dffac6087084a129d9251dc4.zip gcc-a8a423360bf1e0e8dffac6087084a129d9251dc4.tar.gz gcc-a8a423360bf1e0e8dffac6087084a129d9251dc4.tar.bz2 |
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
Diffstat (limited to 'libjava')
-rw-r--r-- | libjava/ChangeLog | 5 | ||||
-rw-r--r-- | libjava/gnu/classpath/jdwp/natVMVirtualMachine.cc | 10 |
2 files changed, 14 insertions, 1 deletions
diff --git a/libjava/ChangeLog b/libjava/ChangeLog index b29a443..5d51892 100644 --- a/libjava/ChangeLog +++ b/libjava/ChangeLog @@ -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): diff --git a/libjava/gnu/classpath/jdwp/natVMVirtualMachine.cc b/libjava/gnu/classpath/jdwp/natVMVirtualMachine.cc index 73b21ee..c77aed2 100644 --- a/libjava/gnu/classpath/jdwp/natVMVirtualMachine.cc +++ b/libjava/gnu/classpath/jdwp/natVMVirtualMachine.cc @@ -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 |