server: Fix copy & paste for number of subkeys.
Signed-off-by: Daniel Lehman <dlehman@esri.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
2392743146
commit
47df3778aa
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue