Changeset 33700 in vbox
- Timestamp:
- Nov 2, 2010 4:19:36 PM (14 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
-
include/iprt/cpp/xml.h (modified) (1 diff)
-
src/VBox/Main/include/ovfreader.h (modified) (1 diff)
-
src/VBox/Main/xml/ovfreader.cpp (modified) (1 diff)
-
src/VBox/Runtime/r3/xml.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/cpp/xml.h
r33469 r33700 636 636 ~XmlMemParser(); 637 637 638 void read(const void* pvBuf, int cbSize, const iprt::MiniString &strFilename, Document &doc);638 void read(const void* pvBuf, size_t cbSize, const iprt::MiniString &strFilename, Document &doc); 639 639 }; 640 640 -
trunk/src/VBox/Main/include/ovfreader.h
r32565 r33700 403 403 { 404 404 public: 405 OVFReader(const void *pvBuf, int cbSize, const iprt::MiniString &path);405 OVFReader(const void *pvBuf, size_t cbSize, const iprt::MiniString &path); 406 406 OVFReader(const iprt::MiniString &path); 407 407 -
trunk/src/VBox/Main/xml/ovfreader.cpp
r33540 r33700 37 37 * @param path path to a filename for error messages. 38 38 */ 39 OVFReader::OVFReader(const void *pvBuf, int cbSize, const MiniString &path)39 OVFReader::OVFReader(const void *pvBuf, size_t cbSize, const MiniString &path) 40 40 : m_strPath(path) 41 41 { -
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.

