GPAK  1.0.0
A general-purpose archive library

◆ filesystem_iterator_free()

GPAK_API void filesystem_iterator_free ( filesystem_tree_iterator_t _iterator)
Brief Description:\n Frees the memory associated with the filesystem tree iterator.

This function deallocates the memory used by the filesystem tree iterator.

Parameters
_iteratorA pointer to the filesystem_tree_iterator_t.

Definition at line 363 of file filesystem_tree.c.

364 {
365  if (_iterator)
366  {
367  free(_iterator->stack_);
368  free(_iterator);
369  }
370 }
filesystem_iterator_state_t * stack_
Definition: gpak_data.h:367

References filesystem_tree_iterator::stack_.

Referenced by _gpak_compressor_generate_dictionary().