Changeset 33700 in vbox for trunk/src/VBox/Runtime/r3
- Timestamp:
- Nov 2, 2010 4:19:36 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 67326
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/xml.cpp
r33540 r33700 1435 1435 * @param doc out: document to be reset and filled with data according to file contents. 1436 1436 */ 1437 void XmlMemParser::read(const void* pvBuf, int cbSize,1437 void XmlMemParser::read(const void* pvBuf, size_t cbSize, 1438 1438 const iprt::MiniString &strFilename, 1439 1439 Document &doc) … … 1447 1447 if (!(doc.m->plibDocument = xmlCtxtReadMemory(m_ctxt, 1448 1448 (const char*)pvBuf, 1449 cbSize,1449 (int)cbSize, 1450 1450 pcszFilename, 1451 1451 NULL, // encoding = auto
Note:
See TracChangeset
for help on using the changeset viewer.