summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--random/rndw32.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/random/rndw32.c b/random/rndw32.c
index 03dffaf8..c495131d 100644
--- a/random/rndw32.c
+++ b/random/rndw32.c
@@ -431,7 +431,7 @@ registry_poll (void (*add)(const void*, size_t, enum random_origins),
}
else
{
- pPerfData = gcry_xmalloc (cbPerfData);
+ pPerfData = xmalloc (cbPerfData);
for (iterations=0; iterations < 10; iterations++)
{
dwSize = cbPerfData;
@@ -451,7 +451,7 @@ registry_poll (void (*add)(const void*, size_t, enum random_origins),
else if (status == ERROR_MORE_DATA)
{
cbPerfData += PERFORMANCE_BUFFER_STEP;
- pPerfData = gcry_xrealloc (pPerfData, cbPerfData);
+ pPerfData = xrealloc (pPerfData, cbPerfData);
}
else
{
@@ -655,7 +655,7 @@ slow_gatherer ( void (*add)(const void*, size_t, enum random_origins),
This scan typically yields around 20 pieces of data, there's nothing
in the range 65...128 so chances are there won't be anything above
there either. */
- buffer = gcry_xmalloc (PERFORMANCE_BUFFER_SIZE);
+ buffer = xmalloc (PERFORMANCE_BUFFER_SIZE);
for (dwType = 0; dwType < 64; dwType++)
{
switch (dwType)