mirror of
https://github.com/openssl/openssl.git
synced 2024-11-27 05:21:51 +08:00
VMS rand: assign before check, not the other way around
items->ile3$w_code was checked before it was assigned its value... Reviewed-by: Tim Hudson <tjh@openssl.org> (Merged from https://github.com/openssl/openssl/pull/6200)
This commit is contained in:
parent
8c8fbca92d
commit
06e0950d20
@ -277,13 +277,13 @@ static size_t prepare_item_list(const struct item_st *items_input,
|
||||
|
||||
for (; items_input_num-- > 0; items_input++, items++) {
|
||||
|
||||
items->ile3$w_code = items_input->code;
|
||||
/* Special treatment of JPI$_FINALEXC */
|
||||
if (items->ile3$w_code == JPI$_FINALEXC)
|
||||
items->ile3$w_length = 4;
|
||||
else
|
||||
items->ile3$w_length = items_input->length;
|
||||
|
||||
items->ile3$w_code = items_input->code;
|
||||
items->ile3$ps_bufaddr = databuffer;
|
||||
items->ile3$ps_retlen_addr = 0;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user