Fixed an issue where SBProcess::LoadImage(...) was not returning the image 
token.

llvm-svn: 120954
diff --git a/lldb/source/API/SBProcess.cpp b/lldb/source/API/SBProcess.cpp
index 614c8dc..0c2eac50 100644
--- a/lldb/source/API/SBProcess.cpp
+++ b/lldb/source/API/SBProcess.cpp
@@ -716,7 +716,7 @@
 SBProcess::LoadImage (lldb::SBFileSpec &sb_image_spec, lldb::SBError &sb_error)
 {
     if (m_opaque_sp)
-        m_opaque_sp->LoadImage (*sb_image_spec, sb_error.ref());
+        return m_opaque_sp->LoadImage (*sb_image_spec, sb_error.ref());
     return LLDB_INVALID_IMAGE_TOKEN;
 }