Actions
Bug #85
closedConsistency in free()'ing pointers returned by *::handle().
Description
Some pointers returned by *::handle() have to be free()'d (f.ex. Extension::handle()) while others need to be kept. For consistency all returned pointers should either need free()'ing or should at least be returned as const pointers to make clear whether or not they can be touched and need free()'ing after use.
Actions