Changeset 55126 in vbox
- Timestamp:
- Apr 8, 2015 10:46:27 AM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 99424
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/win/process-win.cpp
r53624 r55126 846 846 847 847 PSID pSid = (PSID)RTMemAlloc(cbSid * sizeof(wchar_t)); /** @todo r=bird: What's the relationship between wchar_t and PSID? */ 848 Assert PtrReturn(pSid, VERR_NO_MEMORY); /** @todo r=bird: Leaking token handles when we're out of memory... */848 AssertReturn(pSid, VERR_NO_MEMORY); /** @todo r=bird: Leaking token handles when we're out of memory... */ 849 849 850 850 PRTUTF16 pwszDomain = NULL; … … 852 852 { 853 853 pwszDomain = (PRTUTF16)RTMemAlloc(cchDomain * sizeof(RTUTF16)); 854 Assert PtrReturn(pwszDomain, VERR_NO_MEMORY); /** @todo r=bird: Leaking token handles when we're out of memory... */854 AssertReturn(pwszDomain, VERR_NO_MEMORY); /** @todo r=bird: Leaking token handles when we're out of memory... */ 855 855 } 856 856
Note:
See TracChangeset
for help on using the changeset viewer.