mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-12 23:46:36 +00:00
Fix memory leak in r_config_hold_num_free() (#16079)
This commit is contained in:
parent
0e62dda341
commit
c017695b88
@ -9,6 +9,7 @@ static void r_config_hold_char_free(RConfigHoldChar *hc) {
|
||||
}
|
||||
|
||||
static void r_config_hold_num_free(RConfigHoldNum *hc) {
|
||||
free (hc->key);
|
||||
free (hc);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user