Fix memory leak in r_config_hold_num_free() (#16079)

This commit is contained in:
Paul I 2020-03-01 01:39:12 +03:00 committed by GitHub
parent 0e62dda341
commit c017695b88
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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);
}