diff options
author | Thomas Habets <thomas@habets.se> | 2019-12-21 18:36:21 +0000 |
---|---|---|
committer | Marcus Müller <marcus@hostalia.de> | 2020-01-02 23:43:00 +0100 |
commit | 9a2a421a9c54c2dd3fab29e0af9ca5446935d895 (patch) | |
tree | 38f7ccb05e387de8cdfd4e7b5068862c0b48536c /gr-blocks/lib/file_descriptor_source_impl.h | |
parent | 067e336102603ccb0cbf92d3d2a8497f1182618b (diff) |
gr-blocks/file.*: Remove needless memory management
Diffstat (limited to 'gr-blocks/lib/file_descriptor_source_impl.h')
-rw-r--r-- | gr-blocks/lib/file_descriptor_source_impl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-blocks/lib/file_descriptor_source_impl.h b/gr-blocks/lib/file_descriptor_source_impl.h index e0f49bfd9d..b058fe1918 100644 --- a/gr-blocks/lib/file_descriptor_source_impl.h +++ b/gr-blocks/lib/file_descriptor_source_impl.h @@ -35,7 +35,7 @@ private: int d_fd; bool d_repeat; - unsigned char* d_residue; + std::vector<unsigned char> d_residue; unsigned long d_residue_len; protected: |