From 9e0fcabeca06be09617a45df3aa67791b1d6bc3d Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Tue, 15 May 2001 15:49:54 +0000 Subject: [PATCH] Do not forget to increment the pointers... --- crypto/rand/rand_vms.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crypto/rand/rand_vms.c b/crypto/rand/rand_vms.c index 3162cdbeff..29b2d7af0b 100644 --- a/crypto/rand/rand_vms.c +++ b/crypto/rand/rand_vms.c @@ -108,6 +108,8 @@ int RAND_poll(void) pitem->buffer = (long *)data_buffer[total_length]; pitem->retlen = 0; total_length += pitems_data->length; + pitems_data++; + pitem++; } pitem->length = pitem->code = 0; -- 2.34.1