Changeset 69060 in vbox for trunk/src/VBox
- Timestamp:
- Oct 12, 2017 12:53:04 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/misc/inifile.cpp
r68317 r69060 244 244 * Allocation section array and do the preparsing. 245 245 */ 246 pThis->paSections = (PRTINIFILESECTION)RTMemAllocZ(sizeof(pThis->paSections ) * cSections);246 pThis->paSections = (PRTINIFILESECTION)RTMemAllocZ(sizeof(pThis->paSections[0]) * cSections); 247 247 if (!pThis->paSections) 248 248 return VERR_NO_MEMORY;
Note:
See TracChangeset
for help on using the changeset viewer.