summaryrefslogtreecommitdiff
path: root/src/instrumentparser.cc
diff options
context:
space:
mode:
authorAndré Nusser <andre.nusser@googlemail.com>2016-03-23 15:07:17 +0100
committerBent Bisballe Nyeng <deva@aasimon.org>2016-03-29 22:43:30 +0200
commiteaf8c01ac99f9561870528ff608a073166be2163 (patch)
tree53232e8997cbb471dd2d4de2f7dfe3c8fc1c408c /src/instrumentparser.cc
parent31ac3fd56ce77cfb2e9caddd0bdac0614971d98b (diff)
Fix horribly stupid bug.
Diffstat (limited to 'src/instrumentparser.cc')
-rw-r--r--src/instrumentparser.cc11
1 files changed, 9 insertions, 2 deletions
diff --git a/src/instrumentparser.cc b/src/instrumentparser.cc
index 3ebc585..eed179d 100644
--- a/src/instrumentparser.cc
+++ b/src/instrumentparser.cc
@@ -236,6 +236,13 @@ void InstrumentParser::endTag(const std::string& name)
int InstrumentParser::readData(std::string& data, std::size_t size)
{
- if(!fd) return -1;
- return fread((char*)data.c_str(), 1, size, fd);
+ if(!fd)
+ {
+ return -1;
+ }
+
+ data.resize(size);
+ auto nr_of_bytes_read = fread((void*)data.data(), 1, size, fd);
+ data.resize(nr_of_bytes_read);
+ return nr_of_bytes_read;
}