diff options
author | Michel De Vittori <michel.devittori@gmail.com> | 2019-07-19 11:10:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-19 11:10:40 +0200 |
commit | e1cc67c13c63b7ad894687f8f23863a737fef30f (patch) | |
tree | e84f406ba04ad2dbb29a6c2adb6655d9eff20355 /src/input/File.cpp | |
parent | a1e65c0695f35c7decfed3a48ef9ba195d0fbbef (diff) | |
download | dabmux-e1cc67c13c63b7ad894687f8f23863a737fef30f.tar.gz dabmux-e1cc67c13c63b7ad894687f8f23863a737fef30f.tar.bz2 dabmux-e1cc67c13c63b7ad894687f8f23863a737fef30f.zip |
Update File.cpp
Diffstat (limited to 'src/input/File.cpp')
-rw-r--r-- | src/input/File.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input/File.cpp b/src/input/File.cpp index 54dac1e..2528997 100644 --- a/src/input/File.cpp +++ b/src/input/File.cpp @@ -128,7 +128,7 @@ ssize_t FileBase::readFromFile(uint8_t* buffer, size_t size) return -1; } - if (buf.size() + ret == size) { + if (ret == size) { std::copy(m_nonblock_buffer.begin(), m_nonblock_buffer.end(), buffer); buffer += m_nonblock_buffer.size(); |