Commit 47df3778 authored by Daniel Lehman's avatar Daniel Lehman Committed by Alexandre Julliard

server: Fix copy & paste for number of subkeys.

parent 23927431
......@@ -568,7 +568,7 @@ static int grow_subkeys( struct key *key )
}
else
{
nb_subkeys = MIN_VALUES;
nb_subkeys = MIN_SUBKEYS;
if (!(new_subkeys = mem_alloc( nb_subkeys * sizeof(*new_subkeys) ))) return 0;
}
key->subkeys = new_subkeys;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment