mirror of
https://github.com/CTCaer/RetroArch.git
synced 2025-01-10 04:51:32 +00:00
Merge pull request #2557 from heuripedes/master
(menu_displaylist.c) Fix uninitialized value usage
This commit is contained in:
commit
36e3ef3f6c
@ -3063,7 +3063,7 @@ int menu_displaylist_push_list(menu_displaylist_info_t *info, unsigned type)
|
||||
case DISPLAYLIST_CORE_OPTIONS:
|
||||
if (runloop_ctl(RUNLOOP_CTL_HAS_CORE_OPTIONS, NULL))
|
||||
{
|
||||
size_t opts;
|
||||
size_t opts = 0;
|
||||
|
||||
runloop_ctl(RUNLOOP_CTL_GET_CORE_OPTION_SIZE, &opts);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user