Merge "diag: Free the memory in diagfwd_peripheral_exit()"

This commit is contained in:
Linux Build Service Account 2017-12-08 02:16:59 -08:00 committed by Gerrit - the friendly Code Review server
commit 4611ba9cda

View file

@ -911,6 +911,7 @@ void diagfwd_peripheral_exit(void)
uint8_t peripheral; uint8_t peripheral;
uint8_t type; uint8_t type;
struct diagfwd_info *fwd_info = NULL; struct diagfwd_info *fwd_info = NULL;
int transport = 0;
diag_smd_exit(); diag_smd_exit();
diag_socket_exit(); diag_socket_exit();
@ -933,7 +934,10 @@ void diagfwd_peripheral_exit(void)
driver->diagfwd_dci_cmd[peripheral] = NULL; driver->diagfwd_dci_cmd[peripheral] = NULL;
} }
kfree(early_init_info); for (transport = 0; transport < NUM_TRANSPORT; transport++) {
kfree(early_init_info[transport]);
early_init_info[transport] = NULL;
}
} }
int diagfwd_cntl_register(uint8_t transport, uint8_t peripheral, void *ctxt, int diagfwd_cntl_register(uint8_t transport, uint8_t peripheral, void *ctxt,