Changeset 103441 in vbox for trunk/src/VBox/Runtime/testcase
- Timestamp:
- Feb 19, 2024 1:47:22 PM (12 months ago)
- svn:sync-xref-src-repo-rev:
- 161772
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/testcase/tstRTR0CommonDriver.h
r103440 r103441 116 116 } 117 117 118 char szPath[RTPATH_MAX + sizeof(".r0")];119 rc = RTPathExecDir(szPath, RTPATH_MAX);118 char szPath[RTPATH_MAX]; 119 rc = RTPathExecDir(szPath, sizeof(szPath)); 120 120 if (RT_SUCCESS(rc)) 121 rc = RTPathAppend(szPath, RTPATH_MAX, pszTestServiceName);121 rc = RTPathAppend(szPath, sizeof(szPath), pszTestServiceName); 122 122 if (RT_SUCCESS(rc)) 123 123 rc = RTStrCat(szPath, sizeof(szPath), ".r0");
Note:
See TracChangeset
for help on using the changeset viewer.