- Timestamp:
- Nov 14, 2009 11:33:57 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/string/strtonum.cpp
r24658 r24659 166 166 else 167 167 { 168 rc = RTStrToUInt32Ex(strNew, 169 NULL, /* Next pointer, not used */ 170 10 /* Number base */, 171 pu32); 168 rc = RTStrToUInt32Ex(pszNew, NULL /*pszNext*/, 10 /*uBase*/, pu32); 172 169 if (rc != VINF_SUCCESS) 173 170 *pu32 = 0; 174 171 } 175 RTStrFree( strNew);172 RTStrFree(pszNew); 176 173 return rc; 177 174 }
Note:
See TracChangeset
for help on using the changeset viewer.