Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 0dda86f3 authored by Mathieu Faverge's avatar Mathieu Faverge
Browse files

control/desc: Make sure the Destroy function is generic enough to handle both...

control/desc: Make sure the Destroy function is generic enough to handle both classic and recursive descriptors
parent f00c8fa2
No related branches found
No related tags found
1 merge request!256Update on descriptors
...@@ -27,6 +27,7 @@ ...@@ -27,6 +27,7 @@
* *
*/ */
#include <stdlib.h> #include <stdlib.h>
#include <stdio.h>
#include <assert.h> #include <assert.h>
#include <string.h> #include <string.h>
#include "control/common.h" #include "control/common.h"
...@@ -838,9 +839,11 @@ CHAM_desc_t *CHAMELEON_Desc_CopyOnZero( const CHAM_desc_t *descin, void *mat ) ...@@ -838,9 +839,11 @@ CHAM_desc_t *CHAMELEON_Desc_CopyOnZero( const CHAM_desc_t *descin, void *mat )
* @retval CHAMELEON_SUCCESS successful exit * @retval CHAMELEON_SUCCESS successful exit
* *
*/ */
int CHAMELEON_Desc_Destroy(CHAM_desc_t **desc) int CHAMELEON_Desc_Destroy(CHAM_desc_t **descptr)
{ {
CHAM_context_t *chamctxt; CHAM_context_t *chamctxt;
CHAM_desc_t *desc;
int m, n;
chamctxt = chameleon_context_self(); chamctxt = chameleon_context_self();
if (chamctxt == NULL) { if (chamctxt == NULL) {
...@@ -848,14 +851,30 @@ int CHAMELEON_Desc_Destroy(CHAM_desc_t **desc) ...@@ -848,14 +851,30 @@ int CHAMELEON_Desc_Destroy(CHAM_desc_t **desc)
return CHAMELEON_ERR_NOT_INITIALIZED; return CHAMELEON_ERR_NOT_INITIALIZED;
} }
if (*desc == NULL) { if ((descptr == NULL) || (*descptr == NULL)) {
chameleon_error("CHAMELEON_Desc_Destroy", "attempting to destroy a NULL descriptor"); chameleon_error("CHAMELEON_Desc_Destroy", "attempting to destroy a NULL descriptor");
return CHAMELEON_ERR_UNALLOCATED; return CHAMELEON_ERR_UNALLOCATED;
} }
chameleon_desc_destroy( *desc ); desc = *descptr;
free(*desc); for ( n=0; n<desc->nt; n++ ) {
*desc = NULL; for ( m=0; m<desc->mt; m++ ) {
CHAM_tile_t *tile;
tile = desc->get_blktile( desc, m, n );
if ( tile->format == CHAMELEON_TILE_DESC ) {
CHAM_desc_t *tiledesc = tile->mat;
CHAMELEON_Desc_Destroy( &tiledesc );
assert( tiledesc == NULL );
}
}
}
chameleon_desc_destroy( desc );
free(desc);
*descptr = NULL;
return CHAMELEON_SUCCESS; return CHAMELEON_SUCCESS;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment