Changeset 102175 in vbox for trunk/src/libs/xpcom18a4/ipc/ipcd
- Timestamp:
- Nov 21, 2023 8:29:54 AM (17 months ago)
- svn:sync-xref-src-repo-rev:
- 160300
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/xpcom18a4/ipc/ipcd/extensions/transmngr/src/tmTransactionService.cpp
r1 r102175 36 36 * ***** END LICENSE BLOCK ***** */ 37 37 38 #include <iprt/string.h> 39 38 40 #include "nsCOMPtr.h" 39 41 #include "nsIServiceManager.h" … … 56 58 tm_waiting_msg::~tm_waiting_msg() { 57 59 if (domainName) 58 PL_strfree(domainName);60 RTStrFree(domainName); 59 61 } 60 62 … … 69 71 tm_queue_mapping::~tm_queue_mapping() { 70 72 if (domainName) 71 PL_strfree(domainName);73 RTStrFree(domainName); 72 74 if (joinedQueueName) 73 PL_strfree(joinedQueueName);75 RTStrFree(joinedQueueName); 74 76 } 75 77
Note:
See TracChangeset
for help on using the changeset viewer.