Fixed major bug when cloning an AVL group (last AVL of new group was not

correctly enlarged before copying the data) + minor improvements
This commit is contained in:
Celine Mercier
2016-09-05 12:29:52 +02:00
parent eb82d088cb
commit c9dce03295
2 changed files with 45 additions and 12 deletions

View File

@ -298,10 +298,13 @@ OBIDMS_avl_group_p obi_open_avl_group(OBIDMS_p dms, const char* avl_name);
* @param avl A pointer on the AVL to clone.
* @param new_avl A pointer on the new AVL to fill.
*
* @retval 0 if the operation was successfully completed.
* @retval -1 if an error occurred.
*
* @since May 2016
* @author Celine Mercier (celine.mercier@metabarcoding.org)
*/
void obi_clone_avl(OBIDMS_avl_p avl, OBIDMS_avl_p new_avl);
int obi_clone_avl(OBIDMS_avl_p avl, OBIDMS_avl_p new_avl);
/**