Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #613 from lioncash/uninitialized
Core: Fix potential uninitialized var usage in WII_IPC_HLE_Device_usb
  • Loading branch information
shuffle2 committed Jul 13, 2014
2 parents 5e8ff31 + fae0cf3 commit 3cabacd
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Source/Core/Core/IPC_HLE/WII_IPC_HLE_Device_usb.cpp
Expand Up @@ -1512,6 +1512,7 @@ void CWII_IPC_HLE_Device_usb_oh1_57e_305::CommandReadStoredLinkKey(u8* _Input)

hci_read_stored_link_key_rp Reply;
Reply.status = 0x00;
Reply.num_keys_read = 0;
Reply.max_num_keys = 255;

if (ReadStoredLinkKey->read_all == 1)
Expand Down

0 comments on commit 3cabacd

Please sign in to comment.