Changeset 107722 in vbox for trunk/src/libs/xpcom18a4
- Timestamp:
- Jan 13, 2025 8:01:05 PM (2 months ago)
- svn:sync-xref-src-repo-rev:
- 166824
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/xpcom18a4/java/src/nsJavaInterfaces.cpp
r56604 r107722 67 67 #include <VBox/com/com.h> 68 68 using namespace com; 69 #include <iprt/assert.h> 69 70 #include <iprt/initterm.h> 70 71 #include <iprt/string.h> … … 153 154 jstring path = nsnull; 154 155 155 int rv;156 156 jclass clazz; 157 157 jmethodID getPathMID; … … 175 175 memcpy(pszExePath, pszHome, cchHome); 176 176 memcpy(pszExePath + cchHome, "/javafake", sizeof("/javafake")); 177 rv = RTR3InitEx(RTR3INIT_VER_CUR, RTR3INIT_FLAGS_DLL | RTR3INIT_FLAGS_UNOBTRUSIVE, 0, NULL, pszExePath); 177 int rc = RTR3InitEx(RTR3INIT_VER_CUR, RTR3INIT_FLAGS_DLL | RTR3INIT_FLAGS_UNOBTRUSIVE, 0, NULL, pszExePath); 178 AssertRC(rc); 178 179 } else { 179 rv = RTR3InitDll(RTR3INIT_FLAGS_UNOBTRUSIVE); 180 int rc = RTR3InitDll(RTR3INIT_FLAGS_UNOBTRUSIVE); 181 AssertRC(rc); 180 182 } 181 183
Note:
See TracChangeset
for help on using the changeset viewer.