mirror of
https://github.com/libretro/RetroArch.git
synced 2025-04-02 10:51:52 -04:00
(libretrodb) Prevent potential uninitialized variable members
This commit is contained in:
parent
559ddcac81
commit
b965ac36ec
1 changed files with 1 additions and 1 deletions
|
@ -416,8 +416,8 @@ int libretrodb_create_index(libretrodb_t *db,
|
|||
struct rmsgpack_dom_value item;
|
||||
struct rmsgpack_dom_value * field;
|
||||
struct bintree tree;
|
||||
libretrodb_cursor_t cur;
|
||||
uint64_t idx_header_offset;
|
||||
libretrodb_cursor_t cur = {0};
|
||||
void * buff = NULL;
|
||||
uint64_t * buff_u64 = NULL;
|
||||
uint8_t field_size = 0;
|
||||
|
|
Loading…
Add table
Reference in a new issue