diff options
author | lloyd <[email protected]> | 2010-09-13 12:28:27 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-09-13 12:28:27 +0000 |
commit | 27d79c87365105d6128afe9eaf8a82383976ed44 (patch) | |
tree | 9a4f0e1d5ae7ecd5c058c0293d9b546191990cdb /src/entropy/unix_procs | |
parent | 9acfc3a50b31044e48d8dee5fc8030ad7f4518d4 (diff) |
Anywhere where we use MemoryRegion::begin to get access to the raw pointer
representation (rather than in an interator context), instead use &buf[0],
which works for both MemoryRegion and std::vector
Diffstat (limited to 'src/entropy/unix_procs')
-rw-r--r-- | src/entropy/unix_procs/es_unix.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/entropy/unix_procs/es_unix.cpp b/src/entropy/unix_procs/es_unix.cpp index 5756f93dd..8c6e097c7 100644 --- a/src/entropy/unix_procs/es_unix.cpp +++ b/src/entropy/unix_procs/es_unix.cpp @@ -106,7 +106,7 @@ void Unix_EntropySource::poll(Entropy_Accumulator& accum) u32bit got_this_loop = pipe.read(io_buffer, io_buffer.size()); got_from_src += got_this_loop; - accum.add(io_buffer.begin(), got_this_loop, .005); + accum.add(&io_buffer[0], got_this_loop, .005); } sources[j].working = (got_from_src >= MINIMAL_WORKING) ? true : false; |