mirror of
https://github.com/libretro/RetroArch
synced 2025-03-26 02:37:23 +00:00
(input_common.c) Fix two small leaks
This commit is contained in:
parent
7867c3ee74
commit
c82ca15c91
@ -295,7 +295,10 @@ void input_config_parse_joy_button(config_file_t *conf, const char *prefix,
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (config_get_string(conf, key_label, &tmp_a))
|
if (config_get_string(conf, key_label, &tmp_a))
|
||||||
|
{
|
||||||
strlcpy(bind->joykey_label, tmp_a, sizeof(bind->joykey_label));
|
strlcpy(bind->joykey_label, tmp_a, sizeof(bind->joykey_label));
|
||||||
|
free(tmp_a);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void input_config_parse_joy_axis(config_file_t *conf, const char *prefix,
|
void input_config_parse_joy_axis(config_file_t *conf, const char *prefix,
|
||||||
@ -329,7 +332,10 @@ void input_config_parse_joy_axis(config_file_t *conf, const char *prefix,
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (config_get_string(conf, key_label, &tmp_a))
|
if (config_get_string(conf, key_label, &tmp_a))
|
||||||
|
{
|
||||||
strlcpy(bind->joyaxis_label, tmp_a, sizeof(bind->joyaxis_label));
|
strlcpy(bind->joyaxis_label, tmp_a, sizeof(bind->joyaxis_label));
|
||||||
|
free(tmp_a);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#if !defined(IS_JOYCONFIG)
|
#if !defined(IS_JOYCONFIG)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user