target,flash: allow target_free_working_area on NULL area pointer
Standard C library free() allows NULL pointer as a parameter. Change target_free_working_area() to conform this convention. Remove NULL pointer tests before target_free_working_area() calls. While on it add missing setting pointer to NULL after target_free_working_area(). Change-Id: I7c692ab04a9933398ba5bc614723ad0bdecb87b3 Signed-off-by: Tomas Vanek <vanekt@fbl.cz> Reviewed-on: https://review.openocd.org/c/openocd/+/6712 Tested-by: jenkins Reviewed-by: Antonio Borneo <borneo.antonio@gmail.com>
This commit is contained in:
committed by
Antonio Borneo
parent
35f284fe7c
commit
f735faa931
@@ -726,6 +726,13 @@ int target_alloc_working_area(struct target *target,
|
||||
*/
|
||||
int target_alloc_working_area_try(struct target *target,
|
||||
uint32_t size, struct working_area **area);
|
||||
/**
|
||||
* Free a working area.
|
||||
* Restore target data if area backup is configured.
|
||||
* @param target
|
||||
* @param area Pointer to the area to be freed or NULL
|
||||
* @returns ERROR_OK if successful; error code if restore failed
|
||||
*/
|
||||
int target_free_working_area(struct target *target, struct working_area *area);
|
||||
void target_free_all_working_areas(struct target *target);
|
||||
uint32_t target_get_working_area_avail(struct target *target);
|
||||
|
||||
Reference in New Issue
Block a user