mirror of
https://github.com/libretro/RetroArch
synced 2025-04-02 16:20:39 +00:00
Try to be safer with calloc allocation
This commit is contained in:
parent
af41b0fd6b
commit
8662d66f2e
@ -878,23 +878,26 @@ static unsigned cheevos_count_cond_sets(const char *memaddr)
|
||||
|
||||
static int cheevos_parse_condition(cheevos_condition_t *condition, const char* memaddr)
|
||||
{
|
||||
if (!condition)
|
||||
return 0;
|
||||
|
||||
condition->count = cheevos_count_cond_sets(memaddr);
|
||||
|
||||
if (condition->count)
|
||||
{
|
||||
unsigned set = 0;
|
||||
cheevos_condset_t *condset = NULL;
|
||||
cheevos_condset_t *conds = NULL;
|
||||
const cheevos_condset_t* end = NULL;
|
||||
cheevos_condset_t *conds = NULL;
|
||||
cheevos_condset_t *condset = NULL;
|
||||
cheevos_condset_t *condsets = (cheevos_condset_t*)
|
||||
calloc(condition->count, sizeof(cheevos_condset_t));
|
||||
|
||||
(void)conds;
|
||||
|
||||
condition->condsets = (cheevos_condset_t*)
|
||||
calloc(condition->count, sizeof(cheevos_condset_t));
|
||||
|
||||
if (!condition->condsets)
|
||||
if (!condsets)
|
||||
return -1;
|
||||
|
||||
condition->condsets = condsets;
|
||||
end = condition->condsets + condition->count;
|
||||
|
||||
for (condset = condition->condsets; condset < end; condset++, set++)
|
||||
|
Loading…
x
Reference in New Issue
Block a user