Changeset 86585 in vbox for trunk/src/VBox/Runtime/testcase/tstRTInlineAsm.cpp
- Timestamp:
- Oct 15, 2020 10:31:09 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/testcase/tstRTInlineAsm.cpp
r85963 r86585 120 120 return "???"; 121 121 122 char *pszRet; 123 RTStrAPrintf(&pszRet, "%d way", u); /* intentional leak! */ 122 char *pszRet = NULL; 123 RTStrAPrintf(&pszRet, "%d way", u); 124 RTMEM_WILL_LEAK(pszRet); 124 125 return pszRet; 125 126 }
Note:
See TracChangeset
for help on using the changeset viewer.