Changeset 102204 in vbox
- Timestamp:
- Nov 21, 2023 1:30:06 PM (12 months ago)
- Location:
- trunk/src/libs/xpcom18a4/xpcom
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/xpcom18a4/xpcom/components/nsNativeComponentLoader.cpp
r101987 r102204 48 48 49 49 #include "prmem.h" 50 #include "prerror.h"51 50 #include "nsNativeComponentLoader.h" 52 51 #include "nsComponentManager.h" … … 116 115 Log(("nsNativeComponentLoader: load FAILED\n")); 117 116 117 /** @todo r=aeichner Get error information from RTLdr. */ 118 118 char errorMsg[1024] = "<unknown; can't get error from NSPR>"; 119 120 if (PR_GetErrorTextLength() < (int) sizeof(errorMsg))121 PR_GetErrorText(errorMsg);122 123 119 DumpLoadError(dll, "GetFactory", errorMsg); 124 125 120 return NS_ERROR_FAILURE; 126 121 } … … 345 340 if (dll->Load() == PR_FALSE) 346 341 { 342 /** @todo r=aeichner Get error text from RTLdr(). */ 347 343 // Cannot load. Probably not a dll. 348 344 char errorMsg[1024] = "Cannot get error from nspr. Not enough memory."; 349 if (PR_GetErrorTextLength() < (int) sizeof(errorMsg))350 PR_GetErrorText(errorMsg);351 352 345 DumpLoadError(dll, "SelfRegisterDll", errorMsg); 353 354 346 return NS_ERROR_FAILURE; 355 347 } -
trunk/src/libs/xpcom18a4/xpcom/io/nsLocalFileUnix.cpp
r102195 r102204 73 73 #include "nsNativeCharsetUtils.h" 74 74 75 #include "prerror.h"76 #include "prerr.h"77 78 75 #include <iprt/err.h> 79 76 #include <iprt/dir.h>
Note:
See TracChangeset
for help on using the changeset viewer.