diff options
author | Johnathan Corgan <johnathan@corganlabs.com> | 2016-04-25 15:44:52 -0700 |
---|---|---|
committer | Johnathan Corgan <johnathan@corganlabs.com> | 2016-04-25 15:44:52 -0700 |
commit | ece754f1716b7378162b54b09b2a88e53e538d12 (patch) | |
tree | 73cfc61c344967bff5d964368785e635b9905ce2 /gr-blocks/lib/udp_source_impl.cc | |
parent | 873b86cb54d03b9d705a2cb3cc5c09877323ed80 (diff) | |
parent | 4aa94044e721f1a4fbff75f5bfb32c5adb5691ea (diff) |
Merge branch 'maint'
Diffstat (limited to 'gr-blocks/lib/udp_source_impl.cc')
-rw-r--r-- | gr-blocks/lib/udp_source_impl.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-blocks/lib/udp_source_impl.cc b/gr-blocks/lib/udp_source_impl.cc index b1977a8fce..e09ed43658 100644 --- a/gr-blocks/lib/udp_source_impl.cc +++ b/gr-blocks/lib/udp_source_impl.cc @@ -149,7 +149,7 @@ namespace gr { if(!error) { { boost::lock_guard<gr::thread::mutex> lock(d_udp_mutex); - if(d_eof && (bytes_transferred == 1) && (d_rxbuf[0] == 0x00)) { + if(d_eof && (bytes_transferred == 0)) { // If we are using EOF notification, test for it and don't // add anything to the output. d_residual = WORK_DONE; |