Changeset 20103 in vbox
- Timestamp:
- May 27, 2009 5:11:22 PM (15 years ago)
- File:
-
- 1 edited
-
trunk/src/VBox/Runtime/r3/win/dir-win.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/win/dir-win.cpp
r20070 r20103 131 131 RTDECL(int) RTDirCreateTemp(char *pszTemplate) 132 132 { 133 /** @todo r=bird: this doesn't work for more than 26 calls and it's racy: 134 * http://msdn.microsoft.com/en-us/library/34wc6k1f(VS.80).aspx */ 133 135 if (_mktemp(pszTemplate)) 134 136 { … … 136 138 return rc; 137 139 } 138 return RTErrConvertFrom Win32(GetLastError());140 return RTErrConvertFromErrno(errno); 139 141 } 140 142
Note:
See TracChangeset
for help on using the changeset viewer.

