Changeset 102345 in vbox for trunk/src/libs/xpcom18a4/java
- Timestamp:
- Nov 27, 2023 6:48:07 PM (16 months ago)
- svn:sync-xref-src-repo-rev:
- 160481
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/xpcom18a4/java/src/nsJavaWrapper.cpp
r102014 r102345 49 49 #include "nsProxyRelease.h" 50 50 51 #include <iprt/string.h> 52 51 53 static nsID nullID = {0, 0, 0, {0, 0, 0, 0, 0, 0, 0, 0}}; 52 54 … … 1503 1505 nsXPIDLCString emsg; 1504 1506 ex->GetMessage(getter_Copies(emsg)); 1505 PR_snprintf(msg, msgSize, "%s",1506 emsg.get());1507 RTStrPrintf2(msg, msgSize, "%s", 1508 emsg.get()); 1507 1509 gotMsg = true; 1508 1510 } … … 1516 1518 if (strncmp(pMsg->pszMsgFull, "Unknown", 7) != 0) 1517 1519 { 1518 PR_snprintf(msg, msgSize, "%s (%s)",1519 pMsg->pszMsgFull, pMsg->pszDefine);1520 RTStrPrintf2(msg, msgSize, "%s (%s)", 1521 pMsg->pszMsgFull, pMsg->pszDefine); 1520 1522 gotMsg = true; 1521 1523 } … … 1524 1526 if (!gotMsg) 1525 1527 { 1526 PR_snprintf(msg, msgSize, "Error 0x%x in module 0x%x",1527 NS_ERROR_GET_CODE(r), NS_ERROR_GET_MODULE(r));1528 RTStrPrintf2(msg, msgSize, "Error 0x%x in module 0x%x", 1529 NS_ERROR_GET_CODE(r), NS_ERROR_GET_MODULE(r)); 1528 1530 } 1529 1531 }
Note:
See TracChangeset
for help on using the changeset viewer.