aboutsummaryrefslogtreecommitdiffstats
path: root/src/entropy
diff options
context:
space:
mode:
Diffstat (limited to 'src/entropy')
-rw-r--r--src/entropy/win32_stats/es_win32.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/entropy/win32_stats/es_win32.cpp b/src/entropy/win32_stats/es_win32.cpp
index 91e0a8eb8..31779bee8 100644
--- a/src/entropy/win32_stats/es_win32.cpp
+++ b/src/entropy/win32_stats/es_win32.cpp
@@ -55,7 +55,7 @@ u32bit Win32_EntropySource::slow_poll(byte buf[], u32bit length)
{
do
{
- buf_i = xor_into_buf(buf, buf_i, length, info, heap_list);
+ buf_i = xor_into_buf(buf, buf_i, length, heap_list);
if(heap_lists_found++ > HEAP_LISTS_MAX)
break;
@@ -70,7 +70,7 @@ u32bit Win32_EntropySource::slow_poll(byte buf[], u32bit length)
{
if(heap_objs_found++ > HEAP_OBJS_PER_LIST)
break;
- buf_i = xor_into_buf(buf, buf_i, length, info, heap_entry);
+ buf_i = xor_into_buf(buf, buf_i, length, heap_entry);
} while(Heap32Next(&heap_entry));
}
} while(Heap32ListNext(snapshot, &heap_list));